home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / winsrc.zip / SELECT.H < prev    next >
Text File  |  1990-06-01  |  817b  |  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. int FAR PASCAL StartSelection(HWND, POINT, LPRECT, int);
  15. int FAR PASCAL UpdateSelection(HWND, POINT, LPRECT, int);
  16. int FAR PASCAL EndSelection(POINT, LPRECT);
  17. int FAR PASCAL ClearSelection(HWND, LPRECT, int);
  18.