Replaced "WORD" by "u16", except where it is part of the Windows API.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@434 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne
2008-09-03 00:12:32 +00:00
parent 36058428a0
commit 4b3c4492ea
3 changed files with 6 additions and 7 deletions

View File

@ -37,7 +37,6 @@
#endif
#define BOOL unsigned int
#define WORD unsigned short
#define HWND void*
#define HINSTANCE void*
#define INT int
@ -63,8 +62,8 @@ extern "C" {
typedef struct
{
WORD Version; // Set to 0x0100
WORD Type; // Set to PLUGIN_TYPE_DVD
u16 Version; // Set to 0x0100
u16 Type; // Set to PLUGIN_TYPE_DVD
char Name[100]; // Name of the DLL
} PLUGIN_INFO;