Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
758 B

  1. //**********************************************************************
  2. // File name: simpsvr.h
  3. //
  4. // Copyright (c) 1993 Microsoft Corporation. All rights reserved.
  5. //**********************************************************************
  6. #define IDM_ABOUT 100
  7. #define IDM_INSERT 101
  8. #define IDM_VERB0 1000
  9. int PASCAL WinMain(HANDLE hInstance,HANDLE hPrevInstance,LPSTR lpCmdLine,int nCmdShow);
  10. BOOL InitApplication(HANDLE hInstance);
  11. BOOL InitInstance(HANDLE hInstance, int nCmdShow);
  12. long FAR PASCAL _export MainWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  13. long FAR PASCAL _export DocWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  14. BOOL FAR PASCAL _export About(HWND hDlg, unsigned message, WORD wParam, LONG lParam);