home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / smart21b.zip / SAMPLES / WIN32OS2 / OPENFILE.H < prev    next >
Text File  |  1994-01-13  |  617b  |  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.