home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / DDEML / CLIENT / TRACK.H_ / TRACK.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  548 b   |  21 lines

  1.  
  2. /*
  3.  * TRACK.H
  4.  *
  5.  * This module implements a general rectangle tracking service
  6.  */
  7.  
  8. /* TrackRect() flags */
  9.  
  10. #define TF_LEFT                    0x0001
  11. #define TF_TOP                    0x0002
  12. #define TF_RIGHT                0x0004
  13. #define TF_BOTTOM                0x0008
  14. #define TF_MOVE                    0x000F
  15.                                 
  16. #define TF_SETPOINTERPOS        0x0010
  17. #define TF_ALLINBOUNDARY        0x0080
  18.  
  19. BOOL TrackRect(HANDLE hInst, HWND hwnd, int left, int top, int right,
  20.         int bottom, int cxMin, int cyMin, WORD fs, LPRECT prcResult);
  21.