home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / smart / samples / win32os2 / openfile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-12  |  617 b   |  19 lines

  1. #define IDM_OPEN     0x1000
  2. #define IDM_SAVEAS   0x1001
  3. #define IDM_EXIT     0x1002
  4. #define IDM_ABOUT    0x1003
  5.  
  6. #define IDC_EDIT     0x2000
  7.  
  8. #define MAXFILENAME 256
  9.  
  10. int PASCAL WinMain (HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine,
  11.                     int nCmdShow);
  12. BOOL InitApplication (HANDLE hInstance);
  13. BOOL InitInstance (HANDLE hInstance, int nCmdShow);
  14. long FAR PASCAL MainWndProc (HWND hWnd, unsigned message, 
  15.                              WPARAM wParam, LPARAM lParam);
  16. BOOL FAR PASCAL About (HWND hDlg, unsigned message, 
  17.                        WPARAM wParam, LPARAM lParam);
  18.  
  19.