4 * Copyright 1993 Robert J. Amstadt
5 * Copyright 1995 Alexandre Julliard
11 #include <sys/types.h>
19 #include "wine/winbase16.h"
20 #include "wine/winuser16.h"
25 #include "cursoricon.h"
31 #include "debugtools.h"
35 DEFAULT_DEBUG_CHANNEL(resource
);
36 DECLARE_DEBUG_CHANNEL(accel
);
38 extern WORD WINE_LanguageId
;
40 #define HRSRC_MAP_BLOCKSIZE 16
42 typedef struct _HRSRC_ELEM
48 typedef struct _HRSRC_MAP
55 /**********************************************************************
58 static HRSRC16
MapHRsrc32To16( NE_MODULE
*pModule
, HANDLE hRsrc32
, WORD type
)
60 HRSRC_MAP
*map
= (HRSRC_MAP
*)pModule
->hRsrcMap
;
64 /* On first call, initialize HRSRC map */
67 if ( !(map
= (HRSRC_MAP
*)HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
68 sizeof(HRSRC_MAP
) ) ) )
70 ERR("Cannot allocate HRSRC map\n" );
73 pModule
->hRsrcMap
= (LPVOID
)map
;
76 /* Check whether HRSRC32 already in map */
77 for ( i
= 0; i
< map
->nUsed
; i
++ )
78 if ( map
->elem
[i
].hRsrc
== hRsrc32
)
79 return (HRSRC16
)(i
+ 1);
81 /* If no space left, grow table */
82 if ( map
->nUsed
== map
->nAlloc
)
84 if ( !(newElem
= (HRSRC_ELEM
*)HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
86 (map
->nAlloc
+ HRSRC_MAP_BLOCKSIZE
)
87 * sizeof(HRSRC_ELEM
) ) ))
89 ERR("Cannot grow HRSRC map\n" );
93 map
->nAlloc
+= HRSRC_MAP_BLOCKSIZE
;
96 /* Add HRSRC32 to table */
97 map
->elem
[map
->nUsed
].hRsrc
= hRsrc32
;
98 map
->elem
[map
->nUsed
].type
= type
;
101 return (HRSRC16
)map
->nUsed
;
104 /**********************************************************************
107 static HANDLE
MapHRsrc16To32( NE_MODULE
*pModule
, HRSRC16 hRsrc16
)
109 HRSRC_MAP
*map
= (HRSRC_MAP
*)pModule
->hRsrcMap
;
110 if ( !map
|| !hRsrc16
|| (int)hRsrc16
> map
->nUsed
) return 0;
112 return map
->elem
[(int)hRsrc16
-1].hRsrc
;
115 /**********************************************************************
118 static WORD
MapHRsrc16ToType( NE_MODULE
*pModule
, HRSRC16 hRsrc16
)
120 HRSRC_MAP
*map
= (HRSRC_MAP
*)pModule
->hRsrcMap
;
121 if ( !map
|| !hRsrc16
|| (int)hRsrc16
> map
->nUsed
) return 0;
123 return map
->elem
[(int)hRsrc16
-1].type
;
127 /**********************************************************************
130 static HRSRC
RES_FindResource( HMODULE hModule
, LPCSTR type
,
131 LPCSTR name
, WORD lang
,
132 BOOL bUnicode
, BOOL bRet16
)
136 HMODULE16 hMod16
= MapHModuleLS( hModule
);
137 NE_MODULE
*pModule
= NE_GetPtr( hMod16
);
138 WINE_MODREF
*wm
= pModule
&& pModule
->module32
?
139 MODULE32_LookupHMODULE( pModule
->module32
) : NULL
;
141 TRACE("(%08x %s, %08x%s, %08x%s, %04x, %s, %s)\n",
143 pModule
? (char *)NE_MODULE_NAME(pModule
) : "NULL dereference",
144 (UINT
)type
, HIWORD(type
)? (bUnicode
? debugstr_w((LPWSTR
)type
) : debugstr_a(type
)) : "",
145 (UINT
)name
, HIWORD(name
)? (bUnicode
? debugstr_w((LPWSTR
)name
) : debugstr_a(name
)) : "",
148 bRet16
? "NE" : "PE" );
150 if ( !pModule
) return 0;
154 /* 32-bit PE module */
155 LPWSTR typeStr
, nameStr
;
157 if ( HIWORD( type
) && !bUnicode
)
158 typeStr
= HEAP_strdupAtoW( GetProcessHeap(), 0, type
);
160 typeStr
= (LPWSTR
)type
;
161 if ( HIWORD( name
) && !bUnicode
)
162 nameStr
= HEAP_strdupAtoW( GetProcessHeap(), 0, name
);
164 nameStr
= (LPWSTR
)name
;
166 hRsrc
= PE_FindResourceExW( wm
, nameStr
, typeStr
, lang
);
168 if ( HIWORD( type
) && !bUnicode
)
169 HeapFree( GetProcessHeap(), 0, typeStr
);
170 if ( HIWORD( name
) && !bUnicode
)
171 HeapFree( GetProcessHeap(), 0, nameStr
);
174 /* If we need to return 16-bit HRSRC, perform conversion */
176 hRsrc
= MapHRsrc32To16( pModule
, hRsrc
,
177 HIWORD( type
)? 0 : LOWORD( type
) );
181 /* 16-bit NE module */
182 LPSTR typeStr
, nameStr
;
184 if ( HIWORD( type
) && bUnicode
)
185 typeStr
= HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)type
);
187 typeStr
= (LPSTR
)type
;
188 if ( HIWORD( name
) && bUnicode
)
189 nameStr
= HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)name
);
191 nameStr
= (LPSTR
)name
;
193 hRsrc
= NE_FindResource( pModule
, nameStr
, typeStr
);
195 if ( HIWORD( type
) && bUnicode
)
196 HeapFree( GetProcessHeap(), 0, typeStr
);
197 if ( HIWORD( name
) && bUnicode
)
198 HeapFree( GetProcessHeap(), 0, nameStr
);
201 /* If we need to return 32-bit HRSRC, no conversion is necessary,
202 we simply use the 16-bit HRSRC as 32-bit HRSRC */
208 /**********************************************************************
211 static DWORD
RES_SizeofResource( HMODULE hModule
, HRSRC hRsrc
, BOOL bRet16
)
215 HMODULE16 hMod16
= MapHModuleLS( hModule
);
216 NE_MODULE
*pModule
= NE_GetPtr( hMod16
);
217 WINE_MODREF
*wm
= pModule
&& pModule
->module32
?
218 MODULE32_LookupHMODULE( pModule
->module32
) : NULL
;
220 TRACE("(%08x %s, %08x, %s)\n",
221 hModule
, NE_MODULE_NAME(pModule
), hRsrc
, bRet16
? "NE" : "PE" );
223 if ( !pModule
|| !hRsrc
) return 0;
227 /* 32-bit PE module */
229 /* If we got a 16-bit hRsrc, convert it */
230 HRSRC hRsrc32
= HIWORD(hRsrc
)? hRsrc
: MapHRsrc16To32( pModule
, hRsrc
);
232 size
= PE_SizeofResource( hModule
, hRsrc32
);
236 /* 16-bit NE module */
238 /* If we got a 32-bit hRsrc, we don't need to convert it */
240 size
= NE_SizeofResource( pModule
, hRsrc
);
246 /**********************************************************************
249 static HFILE
RES_AccessResource( HMODULE hModule
, HRSRC hRsrc
, BOOL bRet16
)
251 HFILE hFile
= HFILE_ERROR
;
253 HMODULE16 hMod16
= MapHModuleLS( hModule
);
254 NE_MODULE
*pModule
= NE_GetPtr( hMod16
);
255 WINE_MODREF
*wm
= pModule
&& pModule
->module32
?
256 MODULE32_LookupHMODULE( pModule
->module32
) : NULL
;
258 TRACE("(%08x %s, %08x, %s)\n",
259 hModule
, NE_MODULE_NAME(pModule
), hRsrc
, bRet16
? "NE" : "PE" );
261 if ( !pModule
|| !hRsrc
) return HFILE_ERROR
;
265 /* 32-bit PE module */
267 /* If we got a 16-bit hRsrc, convert it */
268 HRSRC hRsrc32
= HIWORD(hRsrc
)? hRsrc
: MapHRsrc16To32( pModule
, hRsrc
);
271 FIXME("32-bit modules not yet supported.\n" );
274 /* If we need to return a 16-bit file handle, convert it */
276 hFile
= FILE_AllocDosHandle( hFile
);
280 /* 16-bit NE module */
282 /* If we got a 32-bit hRsrc, we don't need to convert it */
284 hFile
= NE_AccessResource( pModule
, hRsrc
);
286 /* If we are to return a 32-bit file handle, convert it */
288 hFile
= FILE_GetHandle( hFile
);
294 /**********************************************************************
297 static HGLOBAL
RES_LoadResource( HMODULE hModule
, HRSRC hRsrc
, BOOL bRet16
)
301 HMODULE16 hMod16
= MapHModuleLS( hModule
);
302 NE_MODULE
*pModule
= NE_GetPtr( hMod16
);
303 WINE_MODREF
*wm
= pModule
&& pModule
->module32
?
304 MODULE32_LookupHMODULE( pModule
->module32
) : NULL
;
306 TRACE("(%08x %s, %08x, %s)\n",
307 hModule
, NE_MODULE_NAME(pModule
), hRsrc
, bRet16
? "NE" : "PE" );
309 if ( !pModule
|| !hRsrc
) return 0;
313 /* 32-bit PE module */
315 /* If we got a 16-bit hRsrc, convert it */
316 HRSRC hRsrc32
= HIWORD(hRsrc
)? hRsrc
: MapHRsrc16To32( pModule
, hRsrc
);
318 hMem
= PE_LoadResource( wm
, hRsrc32
);
320 /* If we need to return a 16-bit resource, convert it */
323 WORD type
= MapHRsrc16ToType( pModule
, hRsrc
);
324 DWORD size
= SizeofResource( hModule
, hRsrc
);
325 LPVOID bits
= LockResource( hMem
);
327 hMem
= NE_LoadPEResource( pModule
, type
, bits
, size
);
332 /* 16-bit NE module */
334 /* If we got a 32-bit hRsrc, we don't need to convert it */
336 hMem
= NE_LoadResource( pModule
, hRsrc
);
338 /* If we are to return a 32-bit resource, we should probably
339 convert it but we don't for now. FIXME !!! */
345 /**********************************************************************
348 static LPVOID
RES_LockResource( HGLOBAL handle
, BOOL bRet16
)
352 TRACE("(%08x, %s)\n", handle
, bRet16
? "NE" : "PE" );
354 if ( HIWORD( handle
) )
356 /* 32-bit memory handle */
359 FIXME("can't return SEGPTR to 32-bit resource %08x.\n", handle
);
361 bits
= (LPVOID
)handle
;
365 /* 16-bit memory handle */
367 /* May need to reload the resource if discarded */
368 SEGPTR segPtr
= WIN16_GlobalLock16( handle
);
371 bits
= (LPVOID
)segPtr
;
373 bits
= PTR_SEG_TO_LIN( segPtr
);
379 /**********************************************************************
382 static BOOL
RES_FreeResource( HGLOBAL handle
)
384 HGLOBAL retv
= handle
;
386 TRACE("(%08x)\n", handle
);
388 if ( HIWORD( handle
) )
390 /* 32-bit memory handle: nothing to do */
394 /* 16-bit memory handle */
395 NE_MODULE
*pModule
= NE_GetPtr( FarGetOwner16( handle
) );
397 /* Try NE resource first */
398 retv
= NE_FreeResource( pModule
, handle
);
400 /* If this failed, call USER.DestroyIcon32; this will check
401 whether it is a shared cursor/icon; if not it will call
404 if ( Callout
.DestroyIcon32
)
405 retv
= Callout
.DestroyIcon32( handle
, CID_RESOURCE
);
407 retv
= GlobalFree16( handle
);
415 /**********************************************************************
416 * FindResource16 (KERNEL.60)
418 HRSRC16 WINAPI
FindResource16( HMODULE16 hModule
, SEGPTR name
, SEGPTR type
)
420 LPCSTR nameStr
= HIWORD(name
)? PTR_SEG_TO_LIN(name
) : (LPCSTR
)name
;
421 LPCSTR typeStr
= HIWORD(type
)? PTR_SEG_TO_LIN(type
) : (LPCSTR
)type
;
423 return RES_FindResource( hModule
, typeStr
, nameStr
,
424 WINE_LanguageId
, FALSE
, TRUE
);
427 /**********************************************************************
428 * FindResourceA (KERNEL32.128)
430 HANDLE WINAPI
FindResourceA( HMODULE hModule
, LPCSTR name
, LPCSTR type
)
432 return RES_FindResource( hModule
, type
, name
,
433 WINE_LanguageId
, FALSE
, FALSE
);
436 /**********************************************************************
437 * FindResourceExA (KERNEL32.129)
439 HANDLE WINAPI
FindResourceExA( HMODULE hModule
,
440 LPCSTR type
, LPCSTR name
, WORD lang
)
442 return RES_FindResource( hModule
, type
, name
,
443 lang
, FALSE
, FALSE
);
446 /**********************************************************************
447 * FindResourceExW (KERNEL32.130)
449 HRSRC WINAPI
FindResourceExW( HMODULE hModule
,
450 LPCWSTR type
, LPCWSTR name
, WORD lang
)
452 return RES_FindResource( hModule
, (LPCSTR
)type
, (LPCSTR
)name
,
456 /**********************************************************************
457 * FindResourceW (KERNEL32.131)
459 HRSRC WINAPI
FindResourceW(HINSTANCE hModule
, LPCWSTR name
, LPCWSTR type
)
461 return RES_FindResource( hModule
, (LPCSTR
)type
, (LPCSTR
)name
,
462 WINE_LanguageId
, TRUE
, FALSE
);
465 /**********************************************************************
466 * LoadResource16 (KERNEL.61)
468 HGLOBAL16 WINAPI
LoadResource16( HMODULE16 hModule
, HRSRC16 hRsrc
)
470 return RES_LoadResource( hModule
, hRsrc
, TRUE
);
473 /**********************************************************************
474 * LoadResource (KERNEL32.370)
476 HGLOBAL WINAPI
LoadResource( HINSTANCE hModule
, HRSRC hRsrc
)
478 return RES_LoadResource( hModule
, hRsrc
, FALSE
);
481 /**********************************************************************
482 * LockResource16 (KERNEL.62)
484 SEGPTR WINAPI
WIN16_LockResource16( HGLOBAL16 handle
)
486 return (SEGPTR
)RES_LockResource( handle
, TRUE
);
488 LPVOID WINAPI
LockResource16( HGLOBAL16 handle
)
490 return RES_LockResource( handle
, FALSE
);
493 /**********************************************************************
494 * LockResource (KERNEL32.384)
496 LPVOID WINAPI
LockResource( HGLOBAL handle
)
498 return RES_LockResource( handle
, FALSE
);
501 /**********************************************************************
502 * FreeResource16 (KERNEL.63)
504 BOOL16 WINAPI
FreeResource16( HGLOBAL16 handle
)
506 return RES_FreeResource( handle
);
509 /**********************************************************************
510 * FreeResource (KERNEL32.145)
512 BOOL WINAPI
FreeResource( HGLOBAL handle
)
514 return RES_FreeResource( handle
);
517 /**********************************************************************
518 * AccessResource16 (KERNEL.64)
520 INT16 WINAPI
AccessResource16( HINSTANCE16 hModule
, HRSRC16 hRsrc
)
522 return RES_AccessResource( hModule
, hRsrc
, TRUE
);
525 /**********************************************************************
526 * AccessResource (KERNEL32.64)
528 INT WINAPI
AccessResource( HMODULE hModule
, HRSRC hRsrc
)
530 return RES_AccessResource( hModule
, hRsrc
, FALSE
);
533 /**********************************************************************
534 * SizeofResource16 (KERNEL.65)
536 DWORD WINAPI
SizeofResource16( HMODULE16 hModule
, HRSRC16 hRsrc
)
538 return RES_SizeofResource( hModule
, hRsrc
, TRUE
);
541 /**********************************************************************
542 * SizeofResource (KERNEL32.522)
544 DWORD WINAPI
SizeofResource( HINSTANCE hModule
, HRSRC hRsrc
)
546 return RES_SizeofResource( hModule
, hRsrc
, FALSE
);
551 /**********************************************************************
552 * LoadAccelerators16 [USER.177]
554 HACCEL16 WINAPI
LoadAccelerators16(HINSTANCE16 instance
, SEGPTR lpTableName
)
558 if (HIWORD(lpTableName
))
559 TRACE_(accel
)("%04x '%s'\n",
560 instance
, (char *)PTR_SEG_TO_LIN( lpTableName
) );
562 TRACE_(accel
)("%04x %04x\n",
563 instance
, LOWORD(lpTableName
) );
565 if (!(hRsrc
= FindResource16( instance
, lpTableName
, RT_ACCELERATOR16
))) {
566 WARN_(accel
)("couldn't find accelerator table resource\n");
570 TRACE_(accel
)("returning HACCEL 0x%x\n", hRsrc
);
571 return LoadResource16(instance
,hRsrc
);
574 /**********************************************************************
575 * LoadAccelerators32W [USER.177]
576 * The image layout seems to look like this (not 100% sure):
577 * 00: BYTE type type of accelerator
578 * 01: BYTE pad (to WORD boundary)
581 * 06: WORD pad (to DWORD boundary)
583 HACCEL WINAPI
LoadAcceleratorsW(HINSTANCE instance
,LPCWSTR lpTableName
)
586 HACCEL hMem
,hRetval
=0;
589 if (HIWORD(lpTableName
))
590 TRACE_(accel
)("%p '%s'\n",
591 (LPVOID
)instance
, (char *)( lpTableName
) );
593 TRACE_(accel
)("%p 0x%04x\n",
594 (LPVOID
)instance
, LOWORD(lpTableName
) );
596 if (!(hRsrc
= FindResourceW( instance
, lpTableName
, RT_ACCELERATORW
)))
598 WARN_(accel
)("couldn't find accelerator table resource\n");
600 hMem
= LoadResource( instance
, hRsrc
);
601 size
= SizeofResource( instance
, hRsrc
);
602 if(size
>=sizeof(PE_ACCEL
))
604 LPPE_ACCEL accel_table
= (LPPE_ACCEL
) hMem
;
606 int i
,nrofaccells
= size
/sizeof(PE_ACCEL
);
608 hRetval
= GlobalAlloc16(0,sizeof(ACCEL16
)*nrofaccells
);
609 accel16
= (LPACCEL16
)GlobalLock16(hRetval
);
610 for (i
=0;i
<nrofaccells
;i
++) {
611 accel16
[i
].fVirt
= accel_table
[i
].fVirt
;
612 accel16
[i
].key
= accel_table
[i
].key
;
613 accel16
[i
].cmd
= accel_table
[i
].cmd
;
615 accel16
[i
-1].fVirt
|= 0x80;
618 TRACE_(accel
)("returning HACCEL 0x%x\n", hRsrc
);
622 HACCEL WINAPI
LoadAcceleratorsA(HINSTANCE instance
,LPCSTR lpTableName
)
626 if (HIWORD(lpTableName
))
627 uni
= HEAP_strdupAtoW( GetProcessHeap(), 0, lpTableName
);
629 uni
= (LPWSTR
)lpTableName
;
630 result
= LoadAcceleratorsW(instance
,uni
);
631 if (HIWORD(uni
)) HeapFree( GetProcessHeap(), 0, uni
);
635 /**********************************************************************
636 * CopyAcceleratorTable32A (USER32.58)
638 INT WINAPI
CopyAcceleratorTableA(HACCEL src
, LPACCEL dst
, INT entries
)
640 return CopyAcceleratorTableW(src
, dst
, entries
);
643 /**********************************************************************
644 * CopyAcceleratorTable32W (USER32.59)
646 * By mortene@pvv.org 980321
648 INT WINAPI
CopyAcceleratorTableW(HACCEL src
, LPACCEL dst
,
652 LPACCEL16 accel
= (LPACCEL16
)GlobalLock16(src
);
655 /* Do parameter checking to avoid the explosions and the screaming
656 as far as possible. */
657 if((dst
&& (entries
< 1)) || (src
== (HACCEL
)NULL
) || !accel
) {
658 WARN_(accel
)("Application sent invalid parameters (%p %p %d).\n",
659 (LPVOID
)src
, (LPVOID
)dst
, entries
);
662 xsize
= GlobalSize16(src
)/sizeof(ACCEL16
);
663 if (xsize
>entries
) entries
=xsize
;
667 /* Spit out some debugging information. */
668 TRACE_(accel
)("accel %d: type 0x%02x, event '%c', IDval 0x%04x.\n",
669 i
, accel
[i
].fVirt
, accel
[i
].key
, accel
[i
].cmd
);
671 /* Copy data to the destination structure array (if dst == NULL,
672 we're just supposed to count the number of entries). */
674 dst
[i
].fVirt
= accel
[i
].fVirt
;
675 dst
[i
].key
= accel
[i
].key
;
676 dst
[i
].cmd
= accel
[i
].cmd
;
678 /* Check if we've reached the end of the application supplied
679 accelerator table. */
681 /* Turn off the high order bit, just in case. */
682 dst
[i
].fVirt
&= 0x7f;
687 /* The highest order bit seems to mark the end of the accelerator
688 resource table, but not always. Use GlobalSize() check too. */
689 if((accel
[i
].fVirt
& 0x80) != 0) done
= TRUE
;
697 /*********************************************************************
698 * CreateAcceleratorTable (USER32.64)
700 * By mortene@pvv.org 980321
702 HACCEL WINAPI
CreateAcceleratorTableA(LPACCEL lpaccel
, INT cEntries
)
708 /* Do parameter checking just in case someone's trying to be
711 WARN_(accel
)("Application sent invalid parameters (%p %d).\n",
713 SetLastError(ERROR_INVALID_PARAMETER
);
716 FIXME_(accel
)("should check that the accelerator descriptions are valid,"
717 " return NULL and SetLastError() if not.\n");
720 /* Allocate memory and copy the table. */
721 hAccel
= GlobalAlloc16(0,cEntries
*sizeof(ACCEL16
));
723 TRACE_(accel
)("handle %x\n", hAccel
);
725 ERR_(accel
)("Out of memory.\n");
726 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
729 accel
= GlobalLock16(hAccel
);
730 for (i
=0;i
<cEntries
;i
++) {
731 accel
[i
].fVirt
= lpaccel
[i
].fVirt
;
732 accel
[i
].key
= lpaccel
[i
].key
;
733 accel
[i
].cmd
= lpaccel
[i
].cmd
;
735 /* Set the end-of-table terminator. */
736 accel
[cEntries
-1].fVirt
|= 0x80;
738 TRACE_(accel
)("Allocated accelerator handle %x\n", hAccel
);
742 /*********************************************************************
743 * CreateAcceleratorTableW (USER32.64)
747 HACCEL WINAPI
CreateAcceleratorTableW(LPACCEL lpaccel
, INT cEntries
)
754 /* Do parameter checking just in case someone's trying to be
757 WARN_(accel
)("Application sent invalid parameters (%p %d).\n",
759 SetLastError(ERROR_INVALID_PARAMETER
);
762 FIXME_(accel
)("should check that the accelerator descriptions are valid,"
763 " return NULL and SetLastError() if not.\n");
766 /* Allocate memory and copy the table. */
767 hAccel
= GlobalAlloc16(0,cEntries
*sizeof(ACCEL16
));
769 TRACE_(accel
)("handle %x\n", hAccel
);
771 ERR_(accel
)("Out of memory.\n");
772 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
775 accel
= GlobalLock16(hAccel
);
778 for (i
=0;i
<cEntries
;i
++) {
779 accel
[i
].fVirt
= lpaccel
[i
].fVirt
;
780 if( !(accel
[i
].fVirt
& FVIRTKEY
) ) {
781 ckey
= (char) lpaccel
[i
].key
;
782 if(!MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, &ckey
, 1, &accel
[i
].key
, 1))
783 WARN_(accel
)("Error converting ASCII accelerator table to Unicode");
786 accel
[i
].key
= lpaccel
[i
].key
;
787 accel
[i
].cmd
= lpaccel
[i
].cmd
;
790 /* Set the end-of-table terminator. */
791 accel
[cEntries
-1].fVirt
|= 0x80;
793 TRACE_(accel
)("Allocated accelerator handle %x\n", hAccel
);
797 /******************************************************************************
798 * DestroyAcceleratorTable [USER32.130]
799 * Destroys an accelerator table
802 * By mortene@pvv.org 980321
805 * handle [I] Handle to accelerator table
809 BOOL WINAPI
DestroyAcceleratorTable( HACCEL handle
)
811 return GlobalFree16(handle
);
814 /**********************************************************************
817 INT16 WINAPI
LoadString16( HINSTANCE16 instance
, UINT16 resource_id
,
818 LPSTR buffer
, INT16 buflen
)
826 TRACE("inst=%04x id=%04x buff=%08x len=%d\n",
827 instance
, resource_id
, (int) buffer
, buflen
);
829 hrsrc
= FindResource16( instance
, (SEGPTR
)((resource_id
>>4)+1), RT_STRING16
);
830 if (!hrsrc
) return 0;
831 hmem
= LoadResource16( instance
, hrsrc
);
834 p
= LockResource16(hmem
);
835 string_num
= resource_id
& 0x000f;
836 for (i
= 0; i
< string_num
; i
++)
839 TRACE("strlen = %d\n", (int)*p
);
841 if (buffer
== NULL
) return *p
;
842 i
= min(buflen
- 1, *p
);
844 memcpy(buffer
, p
+ 1, i
);
851 WARN("Dont know why caller give buflen=%d *p=%d trying to obtain string '%s'\n", buflen
, *p
, p
+ 1);
853 FreeResource16( hmem
);
855 TRACE("'%s' loaded !\n", buffer
);
859 /**********************************************************************
860 * LoadString32W (USER32.376)
862 INT WINAPI
LoadStringW( HINSTANCE instance
, UINT resource_id
,
863 LPWSTR buffer
, INT buflen
)
871 if (HIWORD(resource_id
)==0xFFFF) /* netscape 3 passes this */
872 resource_id
= (UINT
)(-((INT
)resource_id
));
873 TRACE("instance = %04x, id = %04x, buffer = %08x, "
874 "length = %d\n", instance
, (int)resource_id
, (int) buffer
, buflen
);
876 /* Use bits 4 - 19 (incremented by 1) as resourceid, mask out
878 hrsrc
= FindResourceW( instance
, (LPCWSTR
)(((resource_id
>>4)&0xffff)+1),
880 if (!hrsrc
) return 0;
881 hmem
= LoadResource( instance
, hrsrc
);
884 p
= LockResource(hmem
);
885 string_num
= resource_id
& 0x000f;
886 for (i
= 0; i
< string_num
; i
++)
889 TRACE("strlen = %d\n", (int)*p
);
891 if (buffer
== NULL
) return *p
;
892 i
= min(buflen
- 1, *p
);
894 memcpy(buffer
, p
+ 1, i
* sizeof (WCHAR
));
895 buffer
[i
] = (WCHAR
) 0;
898 buffer
[0] = (WCHAR
) 0;
902 WARN("Dont know why caller give buflen=%d *p=%d trying to obtain string '%s'\n", buflen
, *p
, p
+ 1);
906 TRACE("%s loaded !\n", debugstr_w(buffer
));
910 /**********************************************************************
911 * LoadString32A (USER32.375)
913 INT WINAPI
LoadStringA( HINSTANCE instance
, UINT resource_id
,
914 LPSTR buffer
, INT buflen
)
922 if ( buffer
!= NULL
&& buflen
> 0 )
925 wbuflen
= LoadStringW(instance
,resource_id
,NULL
,0);
931 wbuf
= HeapAlloc( GetProcessHeap(), 0, wbuflen
* sizeof(WCHAR
) );
932 wbuflen
= LoadStringW(instance
,resource_id
,wbuf
,wbuflen
);
935 abuflen
= WideCharToMultiByte(CP_ACP
,0,wbuf
,wbuflen
,NULL
,0,NULL
,NULL
);
938 if ( buffer
== NULL
|| buflen
== 0 )
942 abuf
= HeapAlloc( GetProcessHeap(), 0, abuflen
* sizeof(CHAR
) );
943 abuflen
= WideCharToMultiByte(CP_ACP
,0,wbuf
,wbuflen
,abuf
,abuflen
,NULL
,NULL
);
946 abuflen
= min(abuflen
,buflen
- 1);
947 memcpy( buffer
, abuf
, abuflen
);
951 HeapFree( GetProcessHeap(), 0, abuf
);
955 HeapFree( GetProcessHeap(), 0, wbuf
);
960 /* Messages...used by FormatMessage32* (KERNEL32.something)
962 * They can be specified either directly or using a message ID and
963 * loading them from the resource.
965 * The resourcedata has following format:
967 * 0: DWORD nrofentries
968 * nrofentries * subentry:
969 * 0: DWORD firstentry
971 * 8: DWORD offset from start to the stringentries
973 * (lastentry-firstentry) * stringentry:
974 * 0: WORD len (0 marks end)
977 * (stringentry i of a subentry refers to the ID 'firstentry+i')
979 * Yes, ANSI strings in win32 resources. Go figure.
982 /**********************************************************************
983 * LoadMessage32A (internal)
985 INT WINAPI
LoadMessageA( HMODULE instance
, UINT id
, WORD lang
,
986 LPSTR buffer
, INT buflen
)
990 PMESSAGE_RESOURCE_DATA mrd
;
991 PMESSAGE_RESOURCE_BLOCK mrb
;
992 PMESSAGE_RESOURCE_ENTRY mre
;
995 TRACE("instance = %08lx, id = %08lx, buffer = %p, length = %ld\n", (DWORD
)instance
, (DWORD
)id
, buffer
, (DWORD
)buflen
);
997 /*FIXME: I am not sure about the '1' ... But I've only seen those entries*/
998 hrsrc
= FindResourceExW(instance
,RT_MESSAGELISTW
,(LPWSTR
)1,lang
);
999 if (!hrsrc
) return 0;
1000 hmem
= LoadResource( instance
, hrsrc
);
1001 if (!hmem
) return 0;
1003 mrd
= (PMESSAGE_RESOURCE_DATA
)LockResource(hmem
);
1005 mrb
= &(mrd
->Blocks
[0]);
1006 for (i
=mrd
->NumberOfBlocks
;i
--;) {
1007 if ((id
>=mrb
->LowId
) && (id
<=mrb
->HighId
)) {
1008 mre
= (PMESSAGE_RESOURCE_ENTRY
)(((char*)mrd
)+mrb
->OffsetToEntries
);
1019 mre
= (PMESSAGE_RESOURCE_ENTRY
)(((char*)mre
)+(mre
->Length
));
1022 TRACE(" - strlen=%d\n",slen
);
1023 i
= min(buflen
- 1, slen
);
1027 lstrcpynA(buffer
,(char*)mre
->Text
,i
);
1036 TRACE("'%s' copied !\n", buffer
);
1040 /**********************************************************************
1041 * LoadMessage32W (internal)
1043 INT WINAPI
LoadMessageW( HMODULE instance
, UINT id
, WORD lang
,
1044 LPWSTR buffer
, INT buflen
)
1047 LPSTR buffer2
= NULL
;
1048 if (buffer
&& buflen
)
1049 buffer2
= HeapAlloc( GetProcessHeap(), 0, buflen
);
1050 retval
= LoadMessageA(instance
,id
,lang
,buffer2
,buflen
);
1054 lstrcpynAtoW( buffer
, buffer2
, buflen
);
1055 retval
= lstrlenW( buffer
);
1057 HeapFree( GetProcessHeap(), 0, buffer2
);
1063 /**********************************************************************
1064 * EnumResourceTypesA (KERNEL32.90)
1066 BOOL WINAPI
EnumResourceTypesA( HMODULE hmodule
,ENUMRESTYPEPROCA lpfun
,
1069 /* FIXME: move WINE_MODREF stuff here */
1070 return PE_EnumResourceTypesA(hmodule
,lpfun
,lParam
);
1073 /**********************************************************************
1074 * EnumResourceTypesW (KERNEL32.91)
1076 BOOL WINAPI
EnumResourceTypesW( HMODULE hmodule
,ENUMRESTYPEPROCW lpfun
,
1079 /* FIXME: move WINE_MODREF stuff here */
1080 return PE_EnumResourceTypesW(hmodule
,lpfun
,lParam
);
1083 /**********************************************************************
1084 * EnumResourceNamesA (KERNEL32.88)
1086 BOOL WINAPI
EnumResourceNamesA( HMODULE hmodule
, LPCSTR type
,
1087 ENUMRESNAMEPROCA lpfun
, LONG lParam
)
1089 /* FIXME: move WINE_MODREF stuff here */
1090 return PE_EnumResourceNamesA(hmodule
,type
,lpfun
,lParam
);
1092 /**********************************************************************
1093 * EnumResourceNamesW (KERNEL32.89)
1095 BOOL WINAPI
EnumResourceNamesW( HMODULE hmodule
, LPCWSTR type
,
1096 ENUMRESNAMEPROCW lpfun
, LONG lParam
)
1098 /* FIXME: move WINE_MODREF stuff here */
1099 return PE_EnumResourceNamesW(hmodule
,type
,lpfun
,lParam
);
1102 /**********************************************************************
1103 * EnumResourceLanguagesA (KERNEL32.86)
1105 BOOL WINAPI
EnumResourceLanguagesA( HMODULE hmodule
, LPCSTR type
,
1106 LPCSTR name
, ENUMRESLANGPROCA lpfun
,
1109 /* FIXME: move WINE_MODREF stuff here */
1110 return PE_EnumResourceLanguagesA(hmodule
,type
,name
,lpfun
,lParam
);
1112 /**********************************************************************
1113 * EnumResourceLanguagesW (KERNEL32.87)
1115 BOOL WINAPI
EnumResourceLanguagesW( HMODULE hmodule
, LPCWSTR type
,
1116 LPCWSTR name
, ENUMRESLANGPROCW lpfun
,
1119 /* FIXME: move WINE_MODREF stuff here */
1120 return PE_EnumResourceLanguagesW(hmodule
,type
,name
,lpfun
,lParam
);