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.

50 lines
709 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. MainWnd.H
  5. Abstract:
  6. Global functions and constants used by the Main Application Window
  7. Author:
  8. Bob Watson (a-robw)
  9. Revision History:
  10. 23 NOV 94
  11. --*/
  12. #ifndef _MAINWND_H_
  13. #define _MAINWND_H_
  14. // Main Window Constants
  15. //
  16. // Global functions
  17. //
  18. LRESULT CALLBACK
  19. MainWndProc (
  20. IN HWND hWnd, // window handle
  21. IN UINT message, // type of message
  22. IN WPARAM wParam, // additional information
  23. IN LPARAM lParam // additional information
  24. );
  25. BOOL
  26. RegisterMainWindowClass (
  27. IN HINSTANCE hInstance
  28. );
  29. HWND
  30. CreateMainWindow (
  31. IN HINSTANCE hInstance
  32. );
  33. #endif // _MAINWND_H_