Commit 0c7c1de8 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gameux/tests: Make test_install_uninstall_game() and _isFileExists() static.

parent 5c046d13
......@@ -607,7 +607,8 @@ static void test_add_remove_game(void)
IGameExplorer_Release(ge);
}
}
void test_install_uninstall_game(void)
static void test_install_uninstall_game(void)
{
static const GUID applicationId = { 0x17A6558E, 0x60BE, 0x4078,
{ 0xB6, 0x6F, 0x9C, 0x3A, 0xDA, 0x2A, 0x32, 0xE6 }};
......
......@@ -168,7 +168,7 @@ static HRESULT _buildStatisticsFilePath(LPCGUID guidApplicationId, LPWSTR *lpSta
* TRUE file exists
* FALSE file does not exist
*/
BOOL _isFileExists(LPCWSTR lpFile)
static BOOL _isFileExists(LPCWSTR lpFile)
{
HANDLE hFile = CreateFileW(lpFile, GENERIC_READ, 0, NULL,
OPEN_EXISTING, 0, NULL);
......
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