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.

36 lines
599 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1994 - 1999
  3. Module Name:
  4. pmsgtest.h
  5. Abstract:
  6. Header shared be post message client and server.
  7. Author:
  8. Mario Goertzel (mariogo) 31-Mar-1994
  9. Revision History:
  10. --*/
  11. #ifndef _MSG_HEADER
  12. #define _MSG_HEADER
  13. #define MSG_PERF_MESSAGE WM_USER
  14. #define MSG_PERF_MESSAGE2 (WM_USER+1)
  15. #define MSG_PERF_MESSAGE3 (WM_USER+2)
  16. #define CLASS "MainWClass"
  17. #define TITLE "WMSG Server"
  18. #define REQUEST_EVENT "MSG Test Request Event"
  19. #define REPLY_EVENT "MSG Test Reply Event"
  20. #define WORKER_EVENT "MSG Test Worker Event"
  21. #endif /* _MSG_HEADER */