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.

29 lines
419 B

  1. #ifndef __EFIMESSAGES__
  2. #define __EFIMESSAGES__
  3. /*++
  4. Copyright (c) 1999 Microsoft Corporation
  5. Module Name:
  6. efimessages.hxx
  7. Abstract:
  8. This contains the string table definitions.
  9. Revision History:
  10. --*/
  11. typedef struct _efimessage {
  12. ULONG msgId;
  13. WCHAR *string;
  14. } EFI_MESSAGE, *PEFI_MESSAGE;
  15. extern EFI_MESSAGE MessageTable[];
  16. #define EFI_MESSAGE_COUNT 312
  17. #endif // __EFIMESSAGES__