mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
cmdlgtst: Replace long with LONG.
This commit is contained in:
parent
2f614e6081
commit
b06e30d360
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cmdlgtst);
|
||||||
|
|
||||||
struct FlagTableEntry {
|
struct FlagTableEntry {
|
||||||
int ft_id;
|
int ft_id;
|
||||||
unsigned long ft_bit;
|
ULONG ft_bit;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define EXPORT
|
#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)
|
static DWORD mwcd_GetFlags(HWND hWnd, struct FlagTableEntry * table)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
unsigned long l = 0;
|
ULONG l = 0;
|
||||||
|
|
||||||
for(i=0; table[i].ft_id != IDOK; i++)
|
for(i=0; table[i].ft_id != IDOK; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue