Made some functions static.
This commit is contained in:
parent
ed43709a38
commit
8cddd5d2fb
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue