Commit 8cdcf470 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

mscoree: Use BOOL type where appropriate.

parent a0d6c8c2
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment