[MPlayer-cvslog] r24406 - trunk/loader/resource.c

diego subversion at mplayerhq.hu
Mon Sep 10 15:06:54 CEST 2007


Author: diego
Date: Mon Sep 10 15:06:54 2007
New Revision: 24406

Log:
warning fixes:
resource.c: In function 'RES_SizeofResource':
resource.c:111: warning: unused variable 'hRsrc32'
resource.c: In function 'RES_LoadResource':
resource.c:157: warning: unused variable 'hRsrc32'


Modified:
   trunk/loader/resource.c

Modified: trunk/loader/resource.c
==============================================================================
--- trunk/loader/resource.c	(original)
+++ trunk/loader/resource.c	Mon Sep 10 15:06:54 2007
@@ -108,7 +108,7 @@ static HRSRC RES_FindResource( HMODULE h
 static DWORD RES_SizeofResource( HMODULE hModule, HRSRC hRsrc)
 {
     DWORD size = 0;
-    HRSRC hRsrc32;
+//    HRSRC hRsrc32;
 
 //    HMODULE16 hMod16   = MapHModuleLS( hModule );
 //    NE_MODULE *pModule = NE_GetPtr( hMod16 );
@@ -154,7 +154,7 @@ static HFILE RES_AccessResource( HMODULE
 static HGLOBAL RES_LoadResource( HMODULE hModule, HRSRC hRsrc)
 {
     HGLOBAL hMem = 0;
-    HRSRC hRsrc32;
+//    HRSRC hRsrc32;
     WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );
 
 



More information about the MPlayer-cvslog mailing list