0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

warning fixes:

win32.c:2102: warning: redundant redeclaration of 'LoadResource'
wine/winbase.h:1678: warning: previous declaration of 'LoadResource' was here
win32.c:2247: warning: redundant redeclaration of 'MODULE32_LookupHMODULE'
wine/module.h:143: warning: previous declaration of 'MODULE32_LookupHMODULE' was here


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24421 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-09-10 15:38:11 +00:00
parent 183b4d6fea
commit 9489e9dd4b

View File

@ -2097,7 +2097,6 @@ static HRSRC WINAPI expFindResourceA(HMODULE module, char* name, char* type)
return result;
}
extern HRSRC WINAPI LoadResource(HMODULE, HRSRC);
static HGLOBAL WINAPI expLoadResource(HMODULE module, HRSRC res)
{
HGLOBAL result=LoadResource(module, res);
@ -2242,7 +2241,6 @@ static int WINAPI expGetACP(void)
dbgprintf("GetACP() => 0\n");
return 0;
}
extern WINE_MODREF *MODULE32_LookupHMODULE(HMODULE m);
static int WINAPI expGetModuleFileNameA(int module, char* s, int len)
{
WINE_MODREF *mr;