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.

51 lines
859 B

  1. /*++
  2. Copyright (c) 1985 - 1999, Microsoft Corporation
  3. Module Name:
  4. immdevaw.h
  5. Abstract:
  6. This file defines the A/W structure for IMM.
  7. Author:
  8. Revision History:
  9. Notes:
  10. --*/
  11. #ifndef _IMMDEVAW_H_
  12. #define _IMMDEVAW_H_
  13. /////////////////////////////////////////////////////////////////////////////
  14. // LOGFONTA and LOGFONTW
  15. typedef union {
  16. LOGFONTA A;
  17. LOGFONTW W;
  18. } LOGFONTAW;
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CHAR and WCHAR
  21. typedef union {
  22. char A;
  23. WCHAR W;
  24. } CHARAW;
  25. /////////////////////////////////////////////////////////////////////////////
  26. // IMEMENUITEMINFOA and IMEMENUITEMINFOW
  27. typedef union {
  28. IMEMENUITEMINFOA A;
  29. IMEMENUITEMINFOW W;
  30. } IMEMENUITEMINFOAW;
  31. #endif // _IMMDEVAW_H_