Made some functions static.

oldstable
Eric Pouech 2005-12-12 11:53:56 +01:00 committed by Alexandre Julliard
parent ed43709a38
commit 8cddd5d2fb
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ static void flushdisplaymodes(void)
modes_cnt = modes_size = 0;
}
HRESULT WINAPI enummodescallback(LPDDSURFACEDESC lpddsd, LPVOID lpContext)
static HRESULT WINAPI enummodescallback(LPDDSURFACEDESC lpddsd, LPVOID lpContext)
{
trace("Width = %li, Height = %li, Refresh Rate = %li\r\n",
lpddsd->dwWidth, lpddsd->dwHeight,

View File

@ -947,7 +947,7 @@ static BOOL create_full_pathW(const WCHAR *path)
return ret;
}
BOOL static do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style)
static BOOL do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style)
{
BOOL rc = FALSE;
BOOL docopy = TRUE;