cmdlgtst: Replace long with LONG.

oldstable
Michael Stefaniuc 2010-05-18 09:46:52 +02:00 committed by Alexandre Julliard
parent 2f614e6081
commit b06e30d360
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cmdlgtst);
struct FlagTableEntry {
int ft_id;
unsigned long ft_bit;
ULONG ft_bit;
};
#define EXPORT
@ -576,7 +576,7 @@ static void mwcd_SetFlags(HWND hWnd, struct FlagTableEntry *table, DWORD flags)
static DWORD mwcd_GetFlags(HWND hWnd, struct FlagTableEntry * table)
{
int i;
unsigned long l = 0;
ULONG l = 0;
for(i=0; table[i].ft_id != IDOK; i++)
{