summaryrefslogtreecommitdiffstats
path: root/loader/win32.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 15:38:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 15:38:11 +0000
commit9489e9dd4b379413d078749ba62a77250f191ff4 (patch)
tree947d82d959ef02af13f12d78b3ce0dafa0a5d8be /loader/win32.c
parent183b4d6feabc5659b9ae95a699e990e5c46eb91f (diff)
downloadmpv-9489e9dd4b379413d078749ba62a77250f191ff4.tar.bz2
mpv-9489e9dd4b379413d078749ba62a77250f191ff4.tar.xz
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
Diffstat (limited to 'loader/win32.c')
-rw-r--r--loader/win32.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/loader/win32.c b/loader/win32.c
index ed057aa295..127f5bdf59 100644
--- a/loader/win32.c
+++ b/loader/win32.c
@@ -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;