Assorted spelling fixes.
This commit is contained in:
parent
76039b3728
commit
b990617a95
|
@ -381,7 +381,7 @@ static HRESULT GAMEUX_ParseGameDefinition(
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* GAMEUX_ParseGDFBinary
|
* GAMEUX_ParseGDFBinary
|
||||||
*
|
*
|
||||||
* Helper funtion, loads given binary and parses embed GDF if there's any.
|
* Helper function, loads given binary and parses embed GDF if there's any.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* GameData [I/O] Structure with game's data. Content of field
|
* GameData [I/O] Structure with game's data. Content of field
|
||||||
|
@ -534,7 +534,7 @@ HRESULT WINAPI GAMEUX_RegisterGame(LPCWSTR sGDFBinaryPath,
|
||||||
hr = GAMEUX_WriteRegistryRecord(&GameData);
|
hr = GAMEUX_WriteRegistryRecord(&GameData);
|
||||||
|
|
||||||
GAMEUX_uninitGameData(&GameData);
|
GAMEUX_uninitGameData(&GameData);
|
||||||
TRACE("returing 0x%08x\n", hr);
|
TRACE("returning 0x%08x\n", hr);
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
@ -574,7 +574,7 @@ static HRESULT GAMEUX_IsGameKeyExist(GAME_INSTALL_SCOPE installScope,
|
||||||
RegCloseKey(hKey);
|
RegCloseKey(hKey);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* if key does not exist or other error occured, do not return the path */
|
/* if the key does not exist or another error occurred, do not return the path */
|
||||||
HeapFree(GetProcessHeap(), 0, *lpRegistryPath);
|
HeapFree(GetProcessHeap(), 0, *lpRegistryPath);
|
||||||
*lpRegistryPath = NULL;
|
*lpRegistryPath = NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -696,7 +696,7 @@ HRESULT create_IGameStatistics(GameStatisticsImpl** ppStats)
|
||||||
(*ppStats)->lpVtbl = &GameStatisticsImplVtbl;
|
(*ppStats)->lpVtbl = &GameStatisticsImplVtbl;
|
||||||
(*ppStats)->ref = 1;
|
(*ppStats)->ref = 1;
|
||||||
|
|
||||||
TRACE("returing coclass: %p\n", *ppStats);
|
TRACE("returning coclass: %p\n", *ppStats);
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ HRESULT WINAPI GAMEUX_RegisterGame(LPCWSTR sGDFBinaryPath,
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* GAMEUX_FindGameInstanceId
|
* GAMEUX_FindGameInstanceId
|
||||||
*
|
*
|
||||||
* Helper funtion. Searches for instance identifier of given game in given
|
* Helper function. Searches for instance identifier of given game in given
|
||||||
* installation scope. Implemented in gameexplorer.c
|
* installation scope. Implemented in gameexplorer.c
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
|
|
|
@ -414,7 +414,7 @@ static HRESULT _LoadRegistryString(HKEY hRootKey,
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* _findGameInstanceId
|
* _findGameInstanceId
|
||||||
*
|
*
|
||||||
* Helper funtion. Searches for instance identifier of given game in given
|
* Helper function. Searches for instance identifier of given game in given
|
||||||
* installation scope.
|
* installation scope.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
|
@ -638,7 +638,7 @@ static void test_install_uninstall_game(void)
|
||||||
|
|
||||||
hr = IGameExplorer2_InstallGame(ge2, sExeName, sExePath, GIS_CURRENT_USER);
|
hr = IGameExplorer2_InstallGame(ge2, sExeName, sExePath, GIS_CURRENT_USER);
|
||||||
ok(SUCCEEDED(hr), "IGameExplorer2::InstallGame failed (error 0x%08x)\n", hr);
|
ok(SUCCEEDED(hr), "IGameExplorer2::InstallGame failed (error 0x%08x)\n", hr);
|
||||||
/* in comparision to AddGame, InstallGame does not return instance ID,
|
/* in comparison to AddGame, InstallGame does not return instance ID,
|
||||||
* so we need to find it manually */
|
* so we need to find it manually */
|
||||||
_findGameInstanceId(__LINE__, sExeName, GIS_CURRENT_USER, &guid);
|
_findGameInstanceId(__LINE__, sExeName, GIS_CURRENT_USER, &guid);
|
||||||
|
|
||||||
|
|
|
@ -361,7 +361,7 @@ static void test_InitPathA(CHAR *newdir, CHAR *curDrive, CHAR *otherDrive)
|
||||||
}
|
}
|
||||||
|
|
||||||
for(unique=0;unique<3;unique++) {
|
for(unique=0;unique<3;unique++) {
|
||||||
/* Non-existent path */
|
/* Nonexistent path */
|
||||||
sprintf(invalid_dir, "%s\%s",tmppath,"non_existent_dir_1jwj3y32nb3");
|
sprintf(invalid_dir, "%s\%s",tmppath,"non_existent_dir_1jwj3y32nb3");
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
ok(!GetTempFileNameA(invalid_dir,"tfn",unique,newdir),"GetTempFileNameA should have failed\n");
|
ok(!GetTempFileNameA(invalid_dir,"tfn",unique,newdir),"GetTempFileNameA should have failed\n");
|
||||||
|
|
|
@ -476,7 +476,7 @@ static void test_length(void)
|
||||||
|
|
||||||
ole_expect(IXMLDOMSchemaCollection_get_length(cache, NULL), E_POINTER);
|
ole_expect(IXMLDOMSchemaCollection_get_length(cache, NULL), E_POINTER);
|
||||||
|
|
||||||
/* MSDN lies; removing a non-existant entry produces no error */
|
/* MSDN lies; removing a nonexistent entry produces no error */
|
||||||
ole_check(IXMLDOMSchemaCollection_remove(cache, NULL));
|
ole_check(IXMLDOMSchemaCollection_remove(cache, NULL));
|
||||||
ole_check(IXMLDOMSchemaCollection_remove(cache, _bstr_(xdr_schema1_uri)));
|
ole_check(IXMLDOMSchemaCollection_remove(cache, _bstr_(xdr_schema1_uri)));
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* Copyright 1999 Corel Corporation
|
* Copyright 1999 Corel Corporation
|
||||||
* Sean Langley
|
* Sean Langley
|
||||||
* Copyright 2010 Geoffrey Hausheer
|
* Copyright 2010 Geoffrey Hausheer
|
||||||
* Copyright 2010 Piotr Caban for Codeweavers
|
* Copyright 2010 Piotr Caban for CodeWeavers
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
|
@ -3918,7 +3918,7 @@ static const uri_properties uri_tests[] = {
|
||||||
{URLZONE_INVALID,E_NOTIMPL,FALSE}
|
{URLZONE_INVALID,E_NOTIMPL,FALSE}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/* Dot segements aren't removed. */
|
/* Dot segments aren't removed. */
|
||||||
{ "file://c:\\dir\\../..\\./index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
|
{ "file://c:\\dir\\../..\\./index.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE,
|
||||||
Uri_HAS_ABSOLUTE_URI|Uri_HAS_DISPLAY_URI|Uri_HAS_EXTENSION|Uri_HAS_PATH
|
Uri_HAS_ABSOLUTE_URI|Uri_HAS_DISPLAY_URI|Uri_HAS_EXTENSION|Uri_HAS_PATH
|
||||||
|Uri_HAS_PATH_AND_QUERY|Uri_HAS_RAW_URI|Uri_HAS_SCHEME_NAME|Uri_HAS_HOST_TYPE
|
|Uri_HAS_PATH_AND_QUERY|Uri_HAS_RAW_URI|Uri_HAS_SCHEME_NAME|Uri_HAS_HOST_TYPE
|
||||||
|
|
|
@ -1421,7 +1421,7 @@ static void test_ScriptStringXtoCP_CPtoX(HDC hdc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check beyond the leading boundry of the whole string */
|
/* Check beyond the leading boundary of the whole string */
|
||||||
if (rtl[0])
|
if (rtl[0])
|
||||||
{
|
{
|
||||||
/* having a leading rtl character seems to confuse usp */
|
/* having a leading rtl character seems to confuse usp */
|
||||||
|
@ -1445,7 +1445,7 @@ static void test_ScriptStringXtoCP_CPtoX(HDC hdc)
|
||||||
iTrailing);
|
iTrailing);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check beyond the end boundry of the whole string */
|
/* Check beyond the end boundary of the whole string */
|
||||||
if (rtl[String_len-1])
|
if (rtl[String_len-1])
|
||||||
hr = ScriptStringCPtoX(ssa, String_len-1, FALSE, &X);
|
hr = ScriptStringCPtoX(ssa, String_len-1, FALSE, &X);
|
||||||
else
|
else
|
||||||
|
|
|
@ -997,9 +997,9 @@ static const struct driver_version_information driver_version_table[] =
|
||||||
{
|
{
|
||||||
/* ATI
|
/* ATI
|
||||||
* - Radeon HD2x00 (R600) and up supported by current drivers.
|
* - Radeon HD2x00 (R600) and up supported by current drivers.
|
||||||
* - Radeon 9500 (R300) - X1*00 (R5xx) supported upto Catalyst 9.3 (Linux) and 10.2 (XP/Vista/Win7)
|
* - Radeon 9500 (R300) - X1*00 (R5xx) supported up to Catalyst 9.3 (Linux) and 10.2 (XP/Vista/Win7)
|
||||||
* - Radeon 7xxx (R100) - 9250 (RV250) supported upto Catalyst 6.11 (XP)
|
* - Radeon 7xxx (R100) - 9250 (RV250) supported up to Catalyst 6.11 (XP)
|
||||||
* - Rage 128 supported upto XP, latest official build 6.13.3279 dated October 2001 */
|
* - Rage 128 supported up to XP, latest official build 6.13.3279 dated October 2001 */
|
||||||
{DRIVER_ATI_RAGE_128PRO, DRIVER_MODEL_NT5X, "ati2dvaa.dll", 13, 3279, 0},
|
{DRIVER_ATI_RAGE_128PRO, DRIVER_MODEL_NT5X, "ati2dvaa.dll", 13, 3279, 0},
|
||||||
{DRIVER_ATI_R100, DRIVER_MODEL_NT5X, "ati2dvag.dll", 14, 10, 6614},
|
{DRIVER_ATI_R100, DRIVER_MODEL_NT5X, "ati2dvag.dll", 14, 10, 6614},
|
||||||
{DRIVER_ATI_R300, DRIVER_MODEL_NT5X, "ati2dvag.dll", 14, 10, 6764},
|
{DRIVER_ATI_R300, DRIVER_MODEL_NT5X, "ati2dvag.dll", 14, 10, 6764},
|
||||||
|
|
Loading…
Reference in New Issue