home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / controls / spincube / spintest.h < prev    next >
Text File  |  1995-10-29  |  1KB  |  45 lines

  1. /******************************************************************************\
  2. *
  3. *                                 SPINTEST.H
  4. *
  5. \******************************************************************************/
  6.  
  7.  
  8.  
  9. /******************************************************************************\
  10. *                             SYMBOLIC CONSTANTS
  11. \******************************************************************************/
  12.  
  13. #define IDM_DLGEDITDIALOG  101  /* menuitem id's */
  14. #define IDM_SPINTESTSTATS  102
  15. #define IDM_ABOUT          103
  16.  
  17. #define BORDER             4
  18.  
  19. #define IDS_REGCLASSFAIL    16
  20. #define IDS_WINDOWTITLE     17
  21.  
  22. //
  23. // Spincube window styles as defined in spincube.h.
  24. //
  25.  
  26. #define SS_ERASE                0x0001
  27. #define SS_INMOTION             0x0002
  28.  
  29.  
  30.  
  31. /******************************************************************************\
  32. *                               GLOBAL VARIABLES
  33. \******************************************************************************/
  34.  
  35. HANDLE ghInst;
  36. HWND   gahwndSpin[4];
  37.  
  38.  
  39. /******************************************************************************\
  40. *                              FUNCTION PROTOTYPES
  41. \******************************************************************************/
  42.  
  43. LRESULT CALLBACK MainWndProc (HWND, UINT, WPARAM, LPARAM);
  44. LRESULT CALLBACK DlgProc     (HWND, UINT, WPARAM, LPARAM);
  45.