home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / clip4win / clip4win.exe / C4W30E.HUF / INCLUDE / PAINT.CH < prev    next >
Text File  |  1993-10-08  |  832b  |  32 lines

  1. ////////////////////////////
  2. //
  3. //    Clip-4-Win PAINTSTRUCT definitions
  4. //
  5. //    Copyright (C) 1993 Skelton Software, Kendal Cottage, Hillam, Leeds, UK.
  6. //    All Rights Reserved.
  7. //
  8. ////////////////////////////
  9.  
  10. #ifndef    C4W_PS_CH
  11. #define    C4W_PS_CH
  12.  
  13.  
  14. // Array elements of aPaint[], which is used with BeginPaint() etc.
  15. //
  16. // (these correspond to the members of the Windows PAINTSTRUCT structure)
  17.  
  18. #define    PS_hdc        1    // hDC for output
  19. #define    PS_fErase    2    // .t. if background needs to be redrawn
  20. #define    PS_rcLeft    3    // \
  21. #define    PS_rcTop    4    //  \___ x1,y1 and x2,y2 of rectangle to redraw
  22. #define    PS_rcRight    5    //  /
  23. #define    PS_rcBottom    6    // /
  24. #define    PS_fRestore    7    // reserved
  25. #define    PS_fIncUpdate    8    // reserved
  26. #define    PS_rgbReserved    9    // reserved
  27.  
  28. #define    PS_LENGTH    9    // length of array
  29.  
  30. #endif    // C4W_PS_CH
  31.  
  32.