winecrt0: Use BOOL type where appropriate.
This commit is contained in:
parent
ca58cea0a5
commit
299edf3217
|
@ -27,7 +27,8 @@ int main( int argc, char *argv[] )
|
|||
{
|
||||
STARTUPINFOA info;
|
||||
char *cmdline = GetCommandLineA();
|
||||
int bcount = 0, in_quotes = 0;
|
||||
int bcount = 0;
|
||||
BOOL in_quotes = FALSE;
|
||||
|
||||
while (*cmdline)
|
||||
{
|
||||
|
|
|
@ -29,7 +29,8 @@ int wmain( int argc, WCHAR *argv[] )
|
|||
{
|
||||
STARTUPINFOW info;
|
||||
WCHAR *cmdline = GetCommandLineW();
|
||||
int bcount = 0, in_quotes = 0;
|
||||
int bcount = 0;
|
||||
BOOL in_quotes = FALSE;
|
||||
|
||||
while (*cmdline)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue