home *** CD-ROM | disk | FTP | other *** search
/ Mega A/V / mega_av.zip / mega_av / GRAPHUTL / WINS1651.ZIP / SELECT.H < prev    next >
Text File  |  1991-08-06  |  821b  |  18 lines

  1. /* These defines determine the meaning of the fFlags variable.  The low byte
  2.  * is used for the various types of "boxes" to draw.  The high byte is
  3.  * available for special commands.
  4.  */
  5.  
  6. #define SL_BOX    1             /* Draw a solid border around the rectangle  */
  7. #define SL_BLOCK  2             /* Draw a solid rectangle                    */
  8.  
  9. #define SL_EXTEND 256           /* Extend the current pattern                */
  10.  
  11. #define SL_TYPE    0x00FF       /* Mask out everything but the type flags    */
  12. #define SL_SPECIAL 0xFF00       /* Mask out everything but the special flags */
  13.  
  14. void FAR PASCAL StartSelection(HWND, POINT, LPRECT, int);
  15. void FAR PASCAL UpdateSelection(HWND, POINT, LPRECT, int);
  16. void FAR PASCAL EndSelection(POINT, LPRECT);
  17. void FAR PASCAL ClearSelection(HWND, LPRECT, int);
  18.