home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / MSJV5-6.ZIP / FORM2.ZIP / PAGE.D < prev    next >
Text File  |  1990-11-01  |  1KB  |  37 lines

  1. /*
  2.  * Page Selection Control - PRIVATE HEADER FILE
  3.  *
  4.  * LANGUAGE      : Microsoft C5.1
  5.  * MODEL         : small
  6.  * ENVIRONMENT   : Microsoft Windows 3.0 SDK
  7.  * STATUS        : operational
  8.  *
  9.  * Eikon Systems, Inc.
  10.  * 989 East Hillsdale Blvd, Suite 260
  11.  * Foster City, California 94404
  12.  * 415-349-4664
  13.  *
  14.  * 11/30/89 1.00 - Kevin P. Welch - initial creation.
  15.  *
  16.  */
  17.  
  18. /* Page Control Definitions */
  19. #ifndef RC_INVOKED
  20. extern HANDLE      hPageInst;
  21. #endif
  22.  
  23. #define PAGE_CLASSEXTRA    0  
  24. #define PAGE_WNDEXTRA      18
  25. #define PAGE_VERSION       100
  26. #define PAGE_NAME          "Page"
  27. #define PAGE_COLOR         NULL
  28. #define PAGE_WNDSTYLE      WS_CHILD|WS_VISIBLE|WS_TABSTOP
  29. #define PAGE_CLASSSTYLE    CS_HREDRAW|CS_VREDRAW|CS_DBLCLKS|CS_GLOBALCLASS
  30.  
  31. #define ID_IDENTIFIER      100
  32.  
  33. /* General Definitions */
  34. #define ID(x)              GetWindowWord(x,GWW_ID)
  35. #define PARENT(x)          GetWindowWord(x,GWW_HWNDPARENT)
  36. #define INSTANCE(x)        GetWindowWord(x,GWW_HINSTANCE)
  37.