mscoree: Use BOOL type where appropriate.
This commit is contained in:
parent
a0d6c8c249
commit
8cdcf47001
|
@ -718,7 +718,7 @@ static void find_runtimes(void)
|
|||
|
||||
if (GetFileAttributesW(lib_path) != INVALID_FILE_ATTRIBUTES)
|
||||
{
|
||||
runtimes[i].found = 1;
|
||||
runtimes[i].found = TRUE;
|
||||
|
||||
strcpyW(runtimes[i].mono_path, mono_path);
|
||||
strcpyW(runtimes[i].mscorlib_path, lib_path);
|
||||
|
@ -733,7 +733,7 @@ static void find_runtimes(void)
|
|||
/* Report all runtimes are available if Mono isn't installed.
|
||||
* FIXME: Remove this when Mono is properly packaged. */
|
||||
for (i=0; i<NUM_RUNTIMES; i++)
|
||||
runtimes[i].found = 1;
|
||||
runtimes[i].found = TRUE;
|
||||
}
|
||||
|
||||
runtimes_initialized = TRUE;
|
||||
|
|
|
@ -64,7 +64,7 @@ typedef struct CLRRuntimeInfo
|
|||
DWORD major;
|
||||
DWORD minor;
|
||||
DWORD build;
|
||||
int found;
|
||||
BOOL found;
|
||||
WCHAR mono_path[MAX_PATH];
|
||||
WCHAR mscorlib_path[MAX_PATH];
|
||||
struct RuntimeHost *loaded_runtime;
|
||||
|
|
Loading…
Reference in New Issue