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.

36 lines
1021 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. msgxpt.h
  5. Abstract:
  6. Defines the macros necessary to obtain an export list for the messages thunk functions
  7. and builds the list by including messages.h.
  8. Author:
  9. 6-Oct-1998 mzoran
  10. Revision History:
  11. --*/
  12. #define MSGFN(id) Wow64MsgFnc##id
  13. #define MSG_THUNK_DECLARE(id, wprm, lprm)
  14. #define MSG_ENTRY_NOPARAM(entrynumber, id)
  15. #define MSG_ENTRY_WPARAM(entrynumber, id, wparam) MSGFN(id)
  16. #define MSG_ENTRY_LPARAM(entrynumber, id, lparam) MSGFN(id)
  17. #define MSG_ENTRY_STD(entrynumber, id, wparam, lparam) MSGFN(id)
  18. #define MSG_ENTRY_UNREFERENCED(entrynumber, id)
  19. #define MSG_ENTRY_KERNELONLY(entrynumber, id)
  20. #define MSG_ENTRY_EMPTY(entrynumber)
  21. #define MSG_ENTRY_RESERVED(entrynumber)
  22. #define MSG_ENTRY_TODO(entrynumber)
  23. #define MSG_TABLE_BEGIN
  24. #define MSG_TABLE_END
  25. #include "messages.h"