1 /************************************************************************/ 2 /* */ 3 /* Item Shading. */ 4 /* */ 5 /************************************************************************/ 6 7 # ifndef PS_SHADING_H 8 # define PS_SHADING_H 9 10 typedef enum ShadingPattern 11 { 12 DOCspSOLID= 0, 13 14 PSshdHORIZ, 15 PSshdVERT, 16 PSshdFDIAG, 17 PSshdBDIAG, 18 PSshdCROSS, 19 PSshdDCROSS, 20 PSshdDKHORIZ, 21 PSshdDKVERT, 22 PSshdDKFDIAG, 23 PSshdDKBDIAG, 24 PSshdDKCROSS, 25 PSshdDKDCROSS, 26 27 PSshd_COUNT 28 } ShadingPattern; 29 30 extern const char * const PsShadingNames[]; 31 32 /************************************************************************/ 33 /* */ 34 /* Routine declarations. */ 35 /* */ 36 /************************************************************************/ 37 38 # endif /* PS_SHADING_H */ 39