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
448 B
29 lines
448 B
#ifndef __EFIMESSAGES__
|
|
#define __EFIMESSAGES__
|
|
|
|
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
efimessages.hxx
|
|
|
|
Abstract:
|
|
|
|
This contains the string table definitions.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
typedef struct _efimessage {
|
|
ULONG msgId;
|
|
WCHAR *string;
|
|
} EFI_MESSAGE, *PEFI_MESSAGE;
|
|
|
|
extern EFI_MESSAGE MessageTable[];
|
|
|
|
#define EFI_MESSAGE_COUNT 312
|
|
|
|
#endif // __EFIMESSAGES__
|