mscoree: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2014-02-19 00:41:53 +01:00 committed by Alexandre Julliard
parent a0d6c8c249
commit 8cdcf47001
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;