home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / kwikstik.zip / MAIN.H < prev    next >
C/C++ Source or Header  |  1994-03-24  |  606b  |  28 lines

  1. /*
  2.  * main.h 
  3.  *
  4.  * Constants, data types and function prototypes for the PM PrtSc program.
  5.  *
  6.  * Written 90-02-28 by John W. Cocula
  7.  */ 
  8.  
  9. #define MAXSTRING       256
  10. #define MAXWINTITLELEN  80
  11.  
  12. #define TM_CAPTURE         (WM_USER+0)
  13.  
  14. /* main.c */
  15.  
  16. extern HAB     habMain;
  17. extern HMQ       hmqMain;
  18. extern HWND    hwndFrame, hwndClient;
  19. extern CHAR    szWindowTitle[];
  20.  
  21. /* utils.c */
  22.  
  23. VOID           EnableMenuItem( HWND, SHORT, BOOL );
  24. VOID           CheckMenuItem(  HWND, SHORT, BOOL );
  25. VOID           cdecl ErrorMessage( USHORT, ... );
  26. VOID           ReportWinError( HAB hab );
  27.  
  28.