Leaked source code of windows server 2003
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.

33 lines
1015 B

  1. /****************************** Module Header ******************************\
  2. * Module Name: hello.h
  3. *
  4. * Kent's Window Test. To be used as a program template.
  5. *
  6. * Created: 09-May-91
  7. * Author: KentD
  8. *
  9. * Copyright (c) 1991 Microsoft Corporation
  10. \***************************************************************************/
  11. #define DONTUSE(x) (x)
  12. #define MM_NEW 0x8001
  13. #define MM_EXIT 0x8002
  14. #define MM_TEST 0x8003
  15. BOOL bInitApp(VOID);
  16. VOID vTest(HWND);
  17. LRESULT lMainWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
  18. #define MY_WINDOWSTYLE_FLAGS \
  19. ( \
  20. WS_OVERLAPPED | \
  21. WS_CAPTION | \
  22. WS_BORDER | \
  23. WS_THICKFRAME | \
  24. WS_MAXIMIZEBOX | \
  25. WS_MINIMIZEBOX | \
  26. WS_CLIPCHILDREN | \
  27. WS_VISIBLE | \
  28. WS_SYSMENU \
  29. )