home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / WINDOWS / MISC / WINSR171.ZIP / SELECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-06  |  821 b   |  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.