clr.h 149 B

123456789101112
  1. #ifndef PS_COLOR_H
  2. #define PS_COLOR_H
  3. typedef struct
  4. {
  5. int none; /* 1: no color */
  6. int r, g, b;
  7. double fr, fg, fb;
  8. } PSCOLOR;
  9. #endif