Removed non-exported string functions.
[wine/multimedia.git] / loader / resource.c
blobe4d3e853c51ef34dfbdd56c041da8fb5e31dccc9
1 /*
2 * Resources
4 * Copyright 1993 Robert J. Amstadt
5 * Copyright 1995 Alexandre Julliard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <assert.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wine/winbase16.h"
32 #include "wine/exception.h"
33 #include "heap.h"
34 #include "cursoricon.h"
35 #include "module.h"
36 #include "file.h"
37 #include "wine/debug.h"
38 #include "winerror.h"
39 #include "winnls.h"
40 #include "msvcrt/excpt.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(resource);
44 #define HRSRC_MAP_BLOCKSIZE 16
46 typedef struct _HRSRC_ELEM
48 HANDLE hRsrc;
49 WORD type;
50 } HRSRC_ELEM;
52 typedef struct _HRSRC_MAP
54 int nAlloc;
55 int nUsed;
56 HRSRC_ELEM *elem;
57 } HRSRC_MAP;
59 /**********************************************************************
60 * MapHRsrc32To16
62 static HRSRC16 MapHRsrc32To16( NE_MODULE *pModule, HANDLE hRsrc32, WORD type )
64 HRSRC_MAP *map = (HRSRC_MAP *)pModule->hRsrcMap;
65 HRSRC_ELEM *newElem;
66 int i;
68 /* On first call, initialize HRSRC map */
69 if ( !map )
71 if ( !(map = (HRSRC_MAP *)HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
72 sizeof(HRSRC_MAP) ) ) )
74 ERR("Cannot allocate HRSRC map\n" );
75 return 0;
77 pModule->hRsrcMap = (LPVOID)map;
80 /* Check whether HRSRC32 already in map */
81 for ( i = 0; i < map->nUsed; i++ )
82 if ( map->elem[i].hRsrc == hRsrc32 )
83 return (HRSRC16)(i + 1);
85 /* If no space left, grow table */
86 if ( map->nUsed == map->nAlloc )
88 if ( !(newElem = (HRSRC_ELEM *)HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
89 map->elem,
90 (map->nAlloc + HRSRC_MAP_BLOCKSIZE)
91 * sizeof(HRSRC_ELEM) ) ))
93 ERR("Cannot grow HRSRC map\n" );
94 return 0;
96 map->elem = newElem;
97 map->nAlloc += HRSRC_MAP_BLOCKSIZE;
100 /* Add HRSRC32 to table */
101 map->elem[map->nUsed].hRsrc = hRsrc32;
102 map->elem[map->nUsed].type = type;
103 map->nUsed++;
105 return (HRSRC16)map->nUsed;
108 /**********************************************************************
109 * MapHRsrc16To32
111 static HANDLE MapHRsrc16To32( NE_MODULE *pModule, HRSRC16 hRsrc16 )
113 HRSRC_MAP *map = (HRSRC_MAP *)pModule->hRsrcMap;
114 if ( !map || !hRsrc16 || (int)hRsrc16 > map->nUsed ) return 0;
116 return map->elem[(int)hRsrc16-1].hRsrc;
119 /**********************************************************************
120 * MapHRsrc16ToType
122 static WORD MapHRsrc16ToType( NE_MODULE *pModule, HRSRC16 hRsrc16 )
124 HRSRC_MAP *map = (HRSRC_MAP *)pModule->hRsrcMap;
125 if ( !map || !hRsrc16 || (int)hRsrc16 > map->nUsed ) return 0;
127 return map->elem[(int)hRsrc16-1].type;
131 /* filter for page-fault exceptions */
132 static WINE_EXCEPTION_FILTER(page_fault)
134 if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION)
135 return EXCEPTION_EXECUTE_HANDLER;
136 return EXCEPTION_CONTINUE_SEARCH;
139 static HRSRC RES_FindResource2( HMODULE hModule, LPCSTR type,
140 LPCSTR name, WORD lang,
141 BOOL bUnicode, BOOL bRet16 )
143 HRSRC hRsrc = 0;
145 TRACE("(%08x, %08x%s, %08x%s, %04x, %s, %s)\n",
146 hModule,
147 (UINT)type, HIWORD(type)? (bUnicode? debugstr_w((LPWSTR)type) : debugstr_a(type)) : "",
148 (UINT)name, HIWORD(name)? (bUnicode? debugstr_w((LPWSTR)name) : debugstr_a(name)) : "",
149 lang,
150 bUnicode? "W" : "A",
151 bRet16? "NE" : "PE" );
153 if (!HIWORD(hModule))
155 HMODULE16 hMod16 = MapHModuleLS( hModule );
156 NE_MODULE *pModule = NE_GetPtr( hMod16 );
157 if (!pModule) return 0;
158 if (!pModule->module32)
160 /* 16-bit NE module */
161 LPSTR typeStr, nameStr;
163 if ( HIWORD( type ) && bUnicode )
164 typeStr = HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR)type );
165 else
166 typeStr = (LPSTR)type;
167 if ( HIWORD( name ) && bUnicode )
168 nameStr = HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR)name );
169 else
170 nameStr = (LPSTR)name;
172 hRsrc = NE_FindResource( pModule, nameStr, typeStr );
174 if ( HIWORD( type ) && bUnicode )
175 HeapFree( GetProcessHeap(), 0, typeStr );
176 if ( HIWORD( name ) && bUnicode )
177 HeapFree( GetProcessHeap(), 0, nameStr );
179 /* If we need to return 32-bit HRSRC, no conversion is necessary,
180 we simply use the 16-bit HRSRC as 32-bit HRSRC */
182 else
184 /* 32-bit PE module */
185 hRsrc = RES_FindResource2( pModule->module32, type, name, lang, bUnicode, FALSE );
186 /* If we need to return 16-bit HRSRC, perform conversion */
187 if ( bRet16 )
188 hRsrc = MapHRsrc32To16( pModule, hRsrc,
189 HIWORD( type )? 0 : LOWORD( type ) );
192 else
194 /* 32-bit PE module */
195 LPWSTR typeStr, nameStr;
197 if ( HIWORD( type ) && !bUnicode )
198 typeStr = HEAP_strdupAtoW( GetProcessHeap(), 0, type );
199 else
200 typeStr = (LPWSTR)type;
201 if ( HIWORD( name ) && !bUnicode )
202 nameStr = HEAP_strdupAtoW( GetProcessHeap(), 0, name );
203 else
204 nameStr = (LPWSTR)name;
206 /* Here is the real difference between FindResouce and FindResourceEx */
207 if(lang == MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL) ||
208 lang == MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT) ||
209 lang == MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT) ||
210 lang == MAKELANGID(LANG_NEUTRAL, 3)) /* FIXME: real name? */
211 hRsrc = PE_FindResourceW( hModule, nameStr, typeStr );
212 else
213 hRsrc = PE_FindResourceExW( hModule, nameStr, typeStr, lang );
215 if ( HIWORD( type ) && !bUnicode )
216 HeapFree( GetProcessHeap(), 0, typeStr );
217 if ( HIWORD( name ) && !bUnicode )
218 HeapFree( GetProcessHeap(), 0, nameStr );
220 return hRsrc;
223 /**********************************************************************
224 * RES_FindResource
227 static HRSRC RES_FindResource( HMODULE hModule, LPCSTR type,
228 LPCSTR name, WORD lang,
229 BOOL bUnicode, BOOL bRet16 )
231 HRSRC hRsrc;
232 __TRY
234 hRsrc = RES_FindResource2(hModule, type, name, lang, bUnicode, bRet16);
236 __EXCEPT(page_fault)
238 WARN("page fault\n");
239 SetLastError(ERROR_INVALID_PARAMETER);
240 return 0;
242 __ENDTRY
243 return hRsrc;
246 /**********************************************************************
247 * RES_SizeofResource
249 static DWORD RES_SizeofResource( HMODULE hModule, HRSRC hRsrc, BOOL bRet16 )
251 if (!hRsrc) return 0;
253 TRACE("(%08x, %08x, %s)\n", hModule, hRsrc, bRet16? "NE" : "PE" );
255 if (!HIWORD(hModule))
257 HMODULE16 hMod16 = MapHModuleLS( hModule );
258 NE_MODULE *pModule = NE_GetPtr( hMod16 );
259 if (!pModule) return 0;
261 if (!pModule->module32) /* 16-bit NE module */
263 /* If we got a 32-bit hRsrc, we don't need to convert it */
264 return NE_SizeofResource( pModule, hRsrc );
267 /* If we got a 16-bit hRsrc, convert it */
268 if (!HIWORD(hRsrc)) hRsrc = MapHRsrc16To32( pModule, hRsrc );
271 /* 32-bit PE module */
272 return PE_SizeofResource( hRsrc );
275 /**********************************************************************
276 * RES_LoadResource
278 static HGLOBAL RES_LoadResource( HMODULE hModule, HRSRC hRsrc, BOOL bRet16 )
280 HGLOBAL hMem = 0;
282 TRACE("(%08x, %08x, %s)\n", hModule, hRsrc, bRet16? "NE" : "PE" );
284 if (!hRsrc) return 0;
286 if (!HIWORD(hModule))
288 HMODULE16 hMod16 = MapHModuleLS( hModule );
289 NE_MODULE *pModule = NE_GetPtr( hMod16 );
290 if (!pModule) return 0;
291 if (!pModule->module32)
293 /* 16-bit NE module */
295 /* If we got a 32-bit hRsrc, we don't need to convert it */
296 hMem = NE_LoadResource( pModule, hRsrc );
298 /* If we are to return a 32-bit resource, we should probably
299 convert it but we don't for now. FIXME !!! */
300 return hMem;
302 else
304 /* If we got a 16-bit hRsrc, convert it */
305 HRSRC hRsrc32 = HIWORD(hRsrc)? hRsrc : MapHRsrc16To32( pModule, hRsrc );
307 hMem = PE_LoadResource( pModule->module32, hRsrc32 );
309 /* If we need to return a 16-bit resource, convert it */
310 if ( bRet16 )
312 WORD type = MapHRsrc16ToType( pModule, hRsrc );
313 DWORD size = SizeofResource( hModule, hRsrc );
314 LPVOID bits = LockResource( hMem );
316 hMem = NE_LoadPEResource( pModule, type, bits, size );
320 else
322 /* 32-bit PE module */
323 hMem = PE_LoadResource( hModule, hRsrc );
326 return hMem;
329 /**********************************************************************
330 * FindResource (KERNEL.60)
331 * FindResource16 (KERNEL32.@)
333 HRSRC16 WINAPI FindResource16( HMODULE16 hModule, LPCSTR name, LPCSTR type )
335 return RES_FindResource( hModule, type, name,
336 MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), FALSE, TRUE );
339 /**********************************************************************
340 * FindResourceA (KERNEL32.@)
342 HRSRC WINAPI FindResourceA( HMODULE hModule, LPCSTR name, LPCSTR type )
344 return RES_FindResource( hModule, type, name,
345 MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), FALSE, FALSE );
348 /**********************************************************************
349 * FindResourceExA (KERNEL32.@)
351 HRSRC WINAPI FindResourceExA( HMODULE hModule,
352 LPCSTR type, LPCSTR name, WORD lang )
354 return RES_FindResource( hModule, type, name,
355 lang, FALSE, FALSE );
358 /**********************************************************************
359 * FindResourceExW (KERNEL32.@)
361 HRSRC WINAPI FindResourceExW( HMODULE hModule,
362 LPCWSTR type, LPCWSTR name, WORD lang )
364 return RES_FindResource( hModule, (LPCSTR)type, (LPCSTR)name,
365 lang, TRUE, FALSE );
368 /**********************************************************************
369 * FindResourceW (KERNEL32.@)
371 HRSRC WINAPI FindResourceW(HINSTANCE hModule, LPCWSTR name, LPCWSTR type)
373 return RES_FindResource( hModule, (LPCSTR)type, (LPCSTR)name,
374 MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), TRUE, FALSE );
377 /**********************************************************************
378 * LoadResource (KERNEL.61)
379 * LoadResource16 (KERNEL32.@)
381 HGLOBAL16 WINAPI LoadResource16( HMODULE16 hModule, HRSRC16 hRsrc )
383 return RES_LoadResource( hModule, hRsrc, TRUE );
386 /**********************************************************************
387 * LoadResource (KERNEL32.@)
389 HGLOBAL WINAPI LoadResource( HINSTANCE hModule, HRSRC hRsrc )
391 return RES_LoadResource( hModule, hRsrc, FALSE );
394 /**********************************************************************
395 * LockResource (KERNEL.62)
397 SEGPTR WINAPI WIN16_LockResource16( HGLOBAL16 handle )
399 TRACE("(%04x)\n", handle );
400 /* May need to reload the resource if discarded */
401 return K32WOWGlobalLock16( handle );
404 /**********************************************************************
405 * LockResource16 (KERNEL32.@)
407 LPVOID WINAPI LockResource16( HGLOBAL16 handle )
409 return MapSL( WIN16_LockResource16(handle) );
412 /**********************************************************************
413 * LockResource (KERNEL32.@)
415 LPVOID WINAPI LockResource( HGLOBAL handle )
417 TRACE("(%08x)\n", handle );
419 if (HIWORD( handle )) /* 32-bit memory handle */
420 return (LPVOID)handle;
422 /* 16-bit memory handle */
423 return LockResource16( handle );
426 typedef WORD (WINAPI *pDestroyIcon32Proc)( HGLOBAL16 handle, UINT16 flags );
429 /**********************************************************************
430 * FreeResource (KERNEL.63)
431 * FreeResource16 (KERNEL32.@)
433 BOOL16 WINAPI FreeResource16( HGLOBAL16 handle )
435 HGLOBAL retv = handle;
436 NE_MODULE *pModule = NE_GetPtr( FarGetOwner16( handle ) );
438 TRACE("(%04x)\n", handle );
440 /* Try NE resource first */
441 retv = NE_FreeResource( pModule, handle );
443 /* If this failed, call USER.DestroyIcon32; this will check
444 whether it is a shared cursor/icon; if not it will call
445 GlobalFree16() */
446 if ( retv )
448 pDestroyIcon32Proc proc;
449 HMODULE user = GetModuleHandleA( "user32.dll" );
451 if (user && (proc = (pDestroyIcon32Proc)GetProcAddress( user, "DestroyIcon32" )))
452 retv = proc( handle, CID_RESOURCE );
453 else
454 retv = GlobalFree16( handle );
456 return (BOOL)retv;
459 /**********************************************************************
460 * FreeResource (KERNEL32.@)
462 BOOL WINAPI FreeResource( HGLOBAL handle )
464 if (HIWORD(handle)) return 0; /* 32-bit memory handle: nothing to do */
466 return FreeResource16( handle );
469 /**********************************************************************
470 * SizeofResource (KERNEL.65)
471 * SizeofResource16 (KERNEL32.@)
473 DWORD WINAPI SizeofResource16( HMODULE16 hModule, HRSRC16 hRsrc )
475 return RES_SizeofResource( hModule, hRsrc, TRUE );
478 /**********************************************************************
479 * SizeofResource (KERNEL32.@)
481 DWORD WINAPI SizeofResource( HINSTANCE hModule, HRSRC hRsrc )
483 return RES_SizeofResource( hModule, hRsrc, FALSE );