mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 08:46:29 +00:00
b1bac32007
Sun Dec 15 16:18:15 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [graphics/x11drv/bitblt.c] Fixed BITBLT_StretchImage for partially covered or inverted bitmaps. * [objects/dib.c] Fixed the upside-down bitmap problem. Sat Dec 14 02:49:57 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk> * [if1632/user32.spec] IsMenu and RemoveMenu added (use existing Win16 functions). * [include/windows.h] Corrections to BITMAPINFOHEADER structure. * [loader/module.c] [if1632/kernel32.spec] New function GetModuleFileName32A (heavily based on original Win16 version). * [loader/pe_image.c] Hack to allow files with short PE header to be loaded (e.g. COMDLG32.DLL from Win32s). * [misc/winsock_async.c] #if out EIDRM case (not present in FreeBSD). * [tools/build.c] Remove trailing comments from .s files generated by build as these break assembly when not run through pre-processor. * [windows/graphics.c] [if1632/gdi32.spec] New function Polyline32 - based on original Polyline. Needs metafile support adding still. Fri Dec 13 13:04:06 1996 Bruce Milner <Bruce.Milner@genetics.utah.edu> * [win32/findfile.c] [if1632/kernel.spec] FindFirstFile32A(): Use dos current directory for drive prefixes. FindNextFile32A(): Fill in file attribute information. Implement FindFirstFile16, FindNextFile16, FindClose16. * [files/drive.c] GetCurrentDirectory32A - Fix problem with null 3rd character in string. Tue Dec 10 14:49:07 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [windows/painting.c][windows/message.c] Don't use linked lists to call SendMessage(), for it might destroy the current listentry. * [misc/registry.c] Fixed temporary file saving (rename doesn't work across partitions). * [files/*.c] GetFullPathName*,GetDriveType32A fixed, CreateDirectoryEx*, GetVolumeInformation32W fixed. * [win32/process.c][if1632/kernel.spec][if1632/kernel32.spec] LoadLibrary* updated to new naming std., *32W added. * [win32/console.c] [include/wincon.h] Additions for NT commandline executables. * [if1632/advapi32.spec][if1632/kernel32.spec][win32/init.c] GetUserName32W added, GetComputerName32W added, GetStartupInfo32W added, GetSystemInfo updated to NT standard. * [windows/msgbox.c][misc/shell.c][windows/graphics.c] MessageBox32W, ShellAbout32W, CommandLineToArgvW, Polygon32 added. * [misc/crtdll.c][include/crtdll.h][if1632/crtdll.spec][misc/ntdll.c] [if1632/ntdll.spec] Lot of new unicode functions added (needed for NT). * [loader/pe_image.c] NtCurrentTeb added. Tue Dec 10 22:39:33 1996 Albrecht Kleine <kleine@ak.sax.de> * [windows/keyboard.c] Rewrote function TranslateAccelerator(). Mon Dec 9 14:52:13 1996 Slaven Rezic <eserte@cs.tu-berlin.de> * [windows/defwnd.c] DEFWND_SetText(): Set icon name. Sun Dec 8 23:30:00 1996 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [loader/signal.c] [misc/winsock.c] [misc/winsock_async.c] [if1632/winsock.spec] IPC resource cleanup, bugfixes. * [windows/dialog.c] [windows/defdlg.c] More DefDlgProc() fixes. Sun Dec 8 14:01:42 1996 Vadim Strizhevsky <striv@ms.com> * [misc/clipboard.c] [objects/font.c] [win32/init.c] [win32/newfns.c] [windows/graphics.c] Added a few WIN32 functions which needed to run some win32 accessories. Clock should now work almost as well as 16 bit version. Add: RegisterClipboardFormat32W GetTextExtentExPoint32* GetModuleHandleW, DisableThreadLibraryCalls (empty stub), Polygon32 Fix: Polygon16 possible memory leak on error return.
729 lines
20 KiB
C
729 lines
20 KiB
C
/*
|
|
* Resources
|
|
*
|
|
* Copyright 1993 Robert J. Amstadt
|
|
* Copyright 1995 Alexandre Julliard
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include "arch.h"
|
|
#include "windows.h"
|
|
#include "gdi.h"
|
|
#include "global.h"
|
|
#include "neexe.h"
|
|
#include "accel.h"
|
|
#include "module.h"
|
|
#include "resource.h"
|
|
#include "stddebug.h"
|
|
#include "debug.h"
|
|
#include "libres.h"
|
|
#include "string32.h"
|
|
#include "xmalloc.h"
|
|
|
|
#define PrintId(name) \
|
|
if (HIWORD((DWORD)name)) \
|
|
dprintf_resource( stddeb, "'%s'", (char *)PTR_SEG_TO_LIN(name)); \
|
|
else \
|
|
dprintf_resource( stddeb, "#%04x", LOWORD(name));
|
|
|
|
extern WORD WINE_LanguageId;
|
|
|
|
/**********************************************************************
|
|
* FindResource16 (KERNEL.60)
|
|
*/
|
|
HRSRC16 FindResource16( HMODULE16 hModule, SEGPTR name, SEGPTR type )
|
|
{
|
|
NE_MODULE *pModule;
|
|
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "FindResource16: module=%04x type=", hModule );
|
|
PrintId( type );
|
|
if (HIWORD(name)) /* Check for '#xxx' name */
|
|
{
|
|
char *ptr = PTR_SEG_TO_LIN( name );
|
|
if (ptr[0] == '#') {
|
|
if (!(name = (SEGPTR)atoi( ptr + 1 ))) return 0;
|
|
}
|
|
}
|
|
dprintf_resource( stddeb, " name=" );
|
|
PrintId( name );
|
|
dprintf_resource( stddeb, "\n" );
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
#ifndef WINELIB
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to FindResource16() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_FindResource( hModule, type, name );
|
|
#else
|
|
return LIBRES_FindResource16( hModule, name, type );
|
|
#endif
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* FindResource32A (KERNEL32.128)
|
|
*/
|
|
HANDLE32 FindResource32A( HINSTANCE32 hModule, LPCSTR name, LPCSTR type )
|
|
{
|
|
return FindResourceEx32A(hModule,name,type,WINE_LanguageId);
|
|
}
|
|
|
|
/**********************************************************************
|
|
* FindResourceEx32A (KERNEL32.129)
|
|
*/
|
|
HANDLE32 FindResourceEx32A(
|
|
HINSTANCE32 hModule,LPCSTR name,LPCSTR type,WORD lang
|
|
) {
|
|
LPWSTR xname,xtype;
|
|
HANDLE32 ret;
|
|
|
|
if (HIWORD((DWORD)name)) xname = STRING32_DupAnsiToUni(name);
|
|
else xname = (LPWSTR)name;
|
|
if (HIWORD((DWORD)type)) xtype = STRING32_DupAnsiToUni(type);
|
|
else xtype = (LPWSTR)type;
|
|
ret = FindResourceEx32W(hModule,xname,xtype,lang);
|
|
if (HIWORD((DWORD)name)) free(xname);
|
|
if (HIWORD((DWORD)type)) free(xtype);
|
|
return ret;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* FindResourceEx32W (KERNEL32.130)
|
|
*/
|
|
HRSRC32 FindResourceEx32W(
|
|
HINSTANCE32 hModule, LPCWSTR name, LPCWSTR type, WORD lang
|
|
) {
|
|
#ifndef WINELIB
|
|
NE_MODULE *pModule;
|
|
|
|
if (!hModule) hModule = GetTaskDS();
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "FindResource32W: module=%08x type=", hModule );
|
|
PrintId( type );
|
|
dprintf_resource( stddeb, " name=" );
|
|
PrintId( name );
|
|
dprintf_resource( stddeb, "\n" );
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
if (!(pModule->flags & NE_FFLAGS_WIN32)) return 0;
|
|
return PE_FindResourceEx32W(hModule,name,type,lang);
|
|
#else
|
|
return LIBRES_FindResource32( hModule, name, type );
|
|
#endif
|
|
}
|
|
|
|
/**********************************************************************
|
|
* FindResource32W (KERNEL32.131)
|
|
*/
|
|
HRSRC32 FindResource32W( HINSTANCE32 hModule, LPCWSTR name, LPCWSTR type )
|
|
{
|
|
return FindResourceEx32W(hModule,name,type,WINE_LanguageId);
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* LoadResource16 (KERNEL.61)
|
|
*/
|
|
HGLOBAL16 LoadResource16( HMODULE16 hModule, HRSRC16 hRsrc )
|
|
{
|
|
NE_MODULE *pModule;
|
|
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "LoadResource16: module=%04x res=%04x\n",
|
|
hModule, hRsrc );
|
|
if (!hRsrc) return 0;
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
#ifndef WINELIB
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to LoadResource16() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_LoadResource( hModule, hRsrc );
|
|
#else
|
|
return LIBRES_LoadResource( hModule, hRsrc );
|
|
#endif
|
|
}
|
|
|
|
/**********************************************************************
|
|
* LoadResource32 (KERNEL32.370)
|
|
*/
|
|
HGLOBAL32 LoadResource32( HINSTANCE32 hModule, HRSRC32 hRsrc )
|
|
{
|
|
#ifndef WINELIB
|
|
NE_MODULE *pModule;
|
|
|
|
if (!hModule) hModule = GetTaskDS(); /* FIXME: see FindResource32W */
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "LoadResource32: module=%04x res=%04x\n",
|
|
hModule, hRsrc );
|
|
if (!hRsrc) return 0;
|
|
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
if (!(pModule->flags & NE_FFLAGS_WIN32))
|
|
{
|
|
fprintf(stderr,"LoadResource32: tried to load a non win32 resource.\n");
|
|
return 0; /* FIXME? */
|
|
}
|
|
return PE_LoadResource32(hModule,hRsrc);
|
|
#else
|
|
return LIBRES_LoadResource( hModule, hRsrc );
|
|
#endif
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* LockResource (KERNEL.62)
|
|
*/
|
|
/* 16-bit version */
|
|
SEGPTR WIN16_LockResource16(HGLOBAL16 handle)
|
|
{
|
|
#ifndef WINELIB
|
|
HMODULE16 hModule;
|
|
NE_MODULE *pModule;
|
|
|
|
dprintf_resource(stddeb, "LockResource: handle=%04x\n", handle );
|
|
if (!handle) return (SEGPTR)0;
|
|
hModule = GetExePtr( handle );
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to LockResource() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_LockResource( hModule, handle );
|
|
#else
|
|
return LIBRES_LockResource( handle );
|
|
#endif
|
|
}
|
|
|
|
/* WINELIB 16-bit version */
|
|
LPVOID LockResource16( HGLOBAL16 handle )
|
|
{
|
|
#ifndef WINELIB
|
|
HMODULE16 hModule;
|
|
NE_MODULE *pModule;
|
|
|
|
dprintf_resource(stddeb, "LockResource: handle=%04x\n", handle );
|
|
if (!handle) return NULL;
|
|
hModule = GetExePtr( handle );
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to LockResource16() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return (LPSTR)PTR_SEG_TO_LIN( NE_LockResource( hModule, handle ) );
|
|
#else
|
|
return LIBRES_LockResource( handle );
|
|
#endif
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* LockResource32 (KERNEL32.384)
|
|
*/
|
|
LPVOID LockResource32( HGLOBAL32 handle )
|
|
{
|
|
return (LPVOID)handle;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* FreeResource16 (KERNEL.63)
|
|
*/
|
|
BOOL16 FreeResource16( HGLOBAL16 handle )
|
|
{
|
|
#ifndef WINELIB
|
|
HMODULE16 hModule;
|
|
NE_MODULE *pModule;
|
|
|
|
dprintf_resource(stddeb, "FreeResource16: handle=%04x\n", handle );
|
|
if (!handle) return FALSE;
|
|
hModule = GetExePtr( handle );
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to FreeResource16() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_FreeResource( hModule, handle );
|
|
#else
|
|
return LIBRES_FreeResource( handle );
|
|
#endif
|
|
}
|
|
|
|
/**********************************************************************
|
|
* FreeResource32 (KERNEL32.145)
|
|
*/
|
|
BOOL32 FreeResource32( HGLOBAL32 handle )
|
|
{
|
|
/* no longer used in Win32 */
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* AccessResource16 (KERNEL.64)
|
|
*/
|
|
INT16 AccessResource16( HINSTANCE16 hModule, HRSRC16 hRsrc )
|
|
{
|
|
NE_MODULE *pModule;
|
|
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "AccessResource16: module=%04x res=%04x\n",
|
|
hModule, hRsrc );
|
|
if (!hRsrc) return 0;
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
#ifndef WINELIB
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to AccessResource16() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_AccessResource( hModule, hRsrc );
|
|
#else
|
|
return LIBRES_AccessResource( hModule, hRsrc );
|
|
#endif
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* AccessResource32 (KERNEL32.64)
|
|
*/
|
|
INT32 AccessResource32( HINSTANCE32 hModule, HRSRC32 hRsrc )
|
|
{
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "AccessResource: module=%04x res=%04x\n",
|
|
hModule, hRsrc );
|
|
if (!hRsrc) return 0;
|
|
fprintf(stderr,"AccessResource32: not implemented\n");
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* SizeofResource16 (KERNEL.65)
|
|
*/
|
|
DWORD SizeofResource16( HMODULE16 hModule, HRSRC16 hRsrc )
|
|
{
|
|
NE_MODULE *pModule;
|
|
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "SizeofResource16: module=%04x res=%04x\n",
|
|
hModule, hRsrc );
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
#ifndef WINELIB
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to SizeOfResource16() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_SizeofResource( hModule, hRsrc );
|
|
#else
|
|
return LIBRES_SizeofResource( hModule, hRsrc );
|
|
#endif
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* SizeofResource32 (KERNEL32.522)
|
|
*/
|
|
DWORD SizeofResource32( HINSTANCE32 hModule, HRSRC32 hRsrc )
|
|
{
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "SizeofResource32: module=%04x res=%04x\n",
|
|
hModule, hRsrc );
|
|
fprintf(stderr,"SizeofResource32: not implemented\n");
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* AllocResource16 (KERNEL.66)
|
|
*/
|
|
HGLOBAL16 AllocResource16( HMODULE16 hModule, HRSRC16 hRsrc, DWORD size )
|
|
{
|
|
NE_MODULE *pModule;
|
|
|
|
hModule = GetExePtr( hModule ); /* In case we were passed an hInstance */
|
|
dprintf_resource(stddeb, "AllocResource: module=%04x res=%04x size=%ld\n",
|
|
hModule, hRsrc, size );
|
|
if (!hRsrc) return 0;
|
|
if (!(pModule = MODULE_GetPtr( hModule ))) return 0;
|
|
#ifndef WINELIB
|
|
if (pModule->flags & NE_FFLAGS_WIN32)
|
|
{
|
|
fprintf(stderr,"Don't know how to AllocResource() for Win32 module\n");
|
|
return 0;
|
|
}
|
|
return NE_AllocResource( hModule, hRsrc, size );
|
|
#else
|
|
return LIBRES_AllocResource( hModule, hRsrc, size );
|
|
#endif
|
|
}
|
|
|
|
/**********************************************************************
|
|
* DirectResAlloc (KERNEL.168)
|
|
*
|
|
* Check Schulman, p. 232 for details
|
|
*/
|
|
HGLOBAL16 DirectResAlloc( HINSTANCE16 hInstance, WORD wType, UINT16 wSize )
|
|
{
|
|
dprintf_resource(stddeb,"DirectResAlloc(%04x,%04x,%04x)\n",
|
|
hInstance, wType, wSize );
|
|
hInstance = GetExePtr(hInstance);
|
|
if(!hInstance)return 0;
|
|
if(wType != 0x10) /* 0x10 is the only observed value, passed from
|
|
CreateCursorIndirect. */
|
|
fprintf(stderr, "DirectResAlloc: wType = %x\n", wType);
|
|
return GLOBAL_Alloc(GMEM_MOVEABLE, wSize, hInstance, FALSE, FALSE, FALSE);
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* LoadAccelerators16 [USER.177]
|
|
*/
|
|
HACCEL16 LoadAccelerators16(HINSTANCE16 instance, SEGPTR lpTableName)
|
|
{
|
|
HACCEL16 hAccel;
|
|
HGLOBAL16 rsc_mem;
|
|
HRSRC16 hRsrc;
|
|
BYTE *lp;
|
|
ACCELHEADER *lpAccelTbl;
|
|
int i, n;
|
|
|
|
if (HIWORD(lpTableName))
|
|
dprintf_accel( stddeb, "LoadAccelerators: %04x '%s'\n",
|
|
instance, (char *)PTR_SEG_TO_LIN( lpTableName ) );
|
|
else
|
|
dprintf_accel( stddeb, "LoadAccelerators: %04x %04x\n",
|
|
instance, LOWORD(lpTableName) );
|
|
|
|
if (!(hRsrc = FindResource16( instance, lpTableName, RT_ACCELERATOR )))
|
|
return 0;
|
|
if (!(rsc_mem = LoadResource16( instance, hRsrc ))) return 0;
|
|
|
|
lp = (BYTE *)LockResource16(rsc_mem);
|
|
n = SizeofResource16(instance,hRsrc)/sizeof(ACCELENTRY);
|
|
hAccel = GlobalAlloc16(GMEM_MOVEABLE,
|
|
sizeof(ACCELHEADER) + (n + 1)*sizeof(ACCELENTRY));
|
|
lpAccelTbl = (LPACCELHEADER)GlobalLock16(hAccel);
|
|
lpAccelTbl->wCount = 0;
|
|
for (i = 0; i < n; i++) {
|
|
lpAccelTbl->tbl[i].type = *(lp++);
|
|
lpAccelTbl->tbl[i].wEvent = *((WORD *)lp);
|
|
lp += 2;
|
|
lpAccelTbl->tbl[i].wIDval = *((WORD *)lp);
|
|
lp += 2;
|
|
if (lpAccelTbl->tbl[i].wEvent == 0) break;
|
|
dprintf_accel(stddeb,
|
|
"Accelerator #%u / event=%04X id=%04X type=%02X \n",
|
|
i, lpAccelTbl->tbl[i].wEvent, lpAccelTbl->tbl[i].wIDval,
|
|
lpAccelTbl->tbl[i].type);
|
|
lpAccelTbl->wCount++;
|
|
}
|
|
GlobalUnlock16(hAccel);
|
|
FreeResource16( rsc_mem );
|
|
return hAccel;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* LoadAccelerators32W [USER.177]
|
|
*/
|
|
HACCEL32 LoadAccelerators32W(HINSTANCE32 instance,LPCWSTR lpTableName)
|
|
{
|
|
#if 0
|
|
HACCEL32 hAccel;
|
|
HGLOBAL32 rsc_mem;
|
|
HRSRC32 hRsrc;
|
|
BYTE *lp;
|
|
ACCELHEADER *lpAccelTbl;
|
|
int i, n;
|
|
|
|
if (HIWORD(lpTableName))
|
|
dprintf_accel( stddeb, "LoadAccelerators: %04x '%s'\n",
|
|
instance, (char *)( lpTableName ) );
|
|
else
|
|
dprintf_accel( stddeb, "LoadAccelerators: %04x %04x\n",
|
|
instance, LOWORD(lpTableName) );
|
|
|
|
if (!(hRsrc = FindResource32W( instance, lpTableName,
|
|
(LPCWSTR)RT_ACCELERATOR )))
|
|
return 0;
|
|
if (!(rsc_mem = LoadResource32( instance, hRsrc ))) return 0;
|
|
|
|
lp = (BYTE *)LockResource32(rsc_mem);
|
|
n = SizeofResource32(instance,hRsrc)/sizeof(ACCELENTRY);
|
|
hAccel = GlobalAlloc16(GMEM_MOVEABLE,
|
|
sizeof(ACCELHEADER) + (n + 1)*sizeof(ACCELENTRY));
|
|
lpAccelTbl = (LPACCELHEADER)GlobalLock16(hAccel);
|
|
lpAccelTbl->wCount = 0;
|
|
for (i = 0; i < n; i++) {
|
|
lpAccelTbl->tbl[i].type = *(lp++);
|
|
lpAccelTbl->tbl[i].wEvent = *((WORD *)lp);
|
|
lp += 2;
|
|
lpAccelTbl->tbl[i].wIDval = *((WORD *)lp);
|
|
lp += 2;
|
|
if (lpAccelTbl->tbl[i].wEvent == 0) break;
|
|
dprintf_accel(stddeb,
|
|
"Accelerator #%u / event=%04X id=%04X type=%02X \n",
|
|
i, lpAccelTbl->tbl[i].wEvent, lpAccelTbl->tbl[i].wIDval,
|
|
lpAccelTbl->tbl[i].type);
|
|
lpAccelTbl->wCount++;
|
|
}
|
|
GlobalUnlock16(hAccel);
|
|
FreeResource32(rsc_mem);
|
|
return hAccel;
|
|
#else
|
|
fprintf(stderr,"LoadAcceleratorsW: not implemented\n");
|
|
return 0x100; /* Return something anyway */
|
|
#endif
|
|
}
|
|
|
|
HACCEL32 LoadAccelerators32A(HINSTANCE32 instance,LPCSTR lpTableName)
|
|
{
|
|
LPWSTR uni;
|
|
HACCEL32 result;
|
|
if (HIWORD(lpTableName))
|
|
uni=STRING32_DupAnsiToUni(lpTableName);
|
|
else
|
|
uni=(LPWSTR)lpTableName;
|
|
result=LoadAccelerators32W(instance,uni);
|
|
if (HIWORD(uni))
|
|
free(uni);
|
|
return result;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* LoadString16
|
|
*/
|
|
INT16
|
|
LoadString16(HINSTANCE16 instance,UINT16 resource_id,LPSTR buffer,INT16 buflen)
|
|
{
|
|
HGLOBAL16 hmem;
|
|
HRSRC16 hrsrc;
|
|
unsigned char *p;
|
|
int string_num;
|
|
int i;
|
|
|
|
dprintf_resource(stddeb,"LoadString: inst=%04x id=%04x buff=%08x len=%d\n",
|
|
instance, resource_id, (int) buffer, buflen);
|
|
|
|
hrsrc = FindResource16( instance, (SEGPTR)((resource_id>>4)+1), RT_STRING );
|
|
if (!hrsrc) return 0;
|
|
hmem = LoadResource16( instance, hrsrc );
|
|
if (!hmem) return 0;
|
|
|
|
p = LockResource16(hmem);
|
|
string_num = resource_id & 0x000f;
|
|
for (i = 0; i < string_num; i++)
|
|
p += *p + 1;
|
|
|
|
dprintf_resource( stddeb, "strlen = %d\n", (int)*p );
|
|
|
|
i = MIN(buflen - 1, *p);
|
|
if (buffer == NULL)
|
|
return i;
|
|
if (i > 0) {
|
|
memcpy(buffer, p + 1, i);
|
|
buffer[i] = '\0';
|
|
} else {
|
|
if (buflen > 1) {
|
|
buffer[0] = '\0';
|
|
return 0;
|
|
}
|
|
fprintf(stderr,"LoadString // I dont know why , but caller give buflen=%d *p=%d !\n", buflen, *p);
|
|
fprintf(stderr,"LoadString // and try to obtain string '%s'\n", p + 1);
|
|
}
|
|
FreeResource16( hmem );
|
|
|
|
dprintf_resource(stddeb,"LoadString // '%s' copied !\n", buffer);
|
|
return i;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* LoadString32W (USER32.375)
|
|
*/
|
|
INT32
|
|
LoadString32W(HINSTANCE32 instance,UINT32 resource_id,LPWSTR buffer,int buflen)
|
|
{
|
|
HGLOBAL32 hmem;
|
|
HRSRC32 hrsrc;
|
|
WCHAR *p;
|
|
int string_num;
|
|
int i;
|
|
|
|
dprintf_resource(stddeb, "LoadString: instance = %04x, id = %04x, buffer = %08x, "
|
|
"length = %d\n", instance, (int)resource_id, (int) buffer, buflen);
|
|
|
|
hrsrc = FindResource32W( instance, (LPCWSTR)((resource_id>>4)+1),
|
|
(LPCWSTR)RT_STRING );
|
|
if (!hrsrc) return 0;
|
|
hmem = LoadResource32( instance, hrsrc );
|
|
if (!hmem) return 0;
|
|
|
|
p = LockResource32(hmem);
|
|
string_num = resource_id & 0x000f;
|
|
for (i = 0; i < string_num; i++)
|
|
p += *p + 1;
|
|
|
|
dprintf_resource( stddeb, "strlen = %d\n", (int)*p );
|
|
|
|
i = MIN(buflen - 1, *p);
|
|
if (buffer == NULL)
|
|
return i;
|
|
if (i > 0) {
|
|
memcpy(buffer, p + 1, i * sizeof (WCHAR));
|
|
buffer[i] = (WCHAR) 0;
|
|
} else {
|
|
if (buflen > 1) {
|
|
buffer[0] = (WCHAR) 0;
|
|
return 0;
|
|
}
|
|
#if 0
|
|
fprintf(stderr,"LoadString // I dont know why , but caller give buflen=%d *p=%d !\n", buflen, *p);
|
|
fprintf(stderr,"LoadString // and try to obtain string '%s'\n", p + 1);
|
|
#endif
|
|
}
|
|
#if 0
|
|
dprintf_resource(stddeb,"LoadString // '%s' copied !\n", buffer);
|
|
#endif
|
|
return i;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* LoadString32A (USER32.374)
|
|
*/
|
|
INT32
|
|
LoadString32A(HINSTANCE32 instance,UINT32 resource_id,LPSTR buffer,int buflen)
|
|
{
|
|
LPWSTR buffer2 = buffer?(LPWSTR)xmalloc(buflen*2):NULL;
|
|
INT32 retval = LoadString32W(instance,resource_id,buffer2,buflen);
|
|
|
|
if (!retval) return 0;
|
|
if (buffer) {
|
|
STRING32_UniToAnsi(buffer,buffer2);
|
|
free(buffer2);
|
|
}
|
|
return retval;
|
|
}
|
|
|
|
/* Messages...used by FormatMessage32* (KERNEL32.something)
|
|
*
|
|
* They can be specified either directly or using a message ID and
|
|
* loading them from the resource.
|
|
*
|
|
* The resourcedata has following format:
|
|
* start:
|
|
* 0: DWORD nrofentries
|
|
* nrofentries * subentry:
|
|
* 0: DWORD firstentry
|
|
* 4: DWORD lastentry
|
|
* 8: DWORD offset from start to the stringentries
|
|
*
|
|
* (lastentry-firstentry) * stringentry:
|
|
* 0: WORD len (0 marks end)
|
|
* 2: WORD unknown (flags?)
|
|
* 4: CHAR[len-4]
|
|
* (stringentry i of a subentry refers to the ID 'firstentry+i')
|
|
*
|
|
* Yes, ANSI strings in win32 resources. Go figure.
|
|
*/
|
|
|
|
/**********************************************************************
|
|
* LoadMessage32A (internal)
|
|
*/
|
|
INT32
|
|
LoadMessage32A(
|
|
HINSTANCE32 instance,UINT32 id,WORD lang,LPSTR buffer,int buflen
|
|
) {
|
|
HGLOBAL32 hmem;
|
|
HRSRC32 hrsrc;
|
|
BYTE *p;
|
|
int nrofentries,i,slen;
|
|
struct _subentry {
|
|
DWORD firstentry;
|
|
DWORD lastentry;
|
|
DWORD offset;
|
|
} *se;
|
|
struct _stringentry {
|
|
WORD len;
|
|
WORD unknown;
|
|
CHAR str[1];
|
|
} *stre;
|
|
|
|
dprintf_resource(stddeb, "LoadMessage: instance = %04x, id = %04x, buffer = %08x, "
|
|
"length = %d\n", instance, (int)id, (int) buffer, buflen);
|
|
|
|
/*FIXME: I am not sure about the '1' ... But I've only seen those entries*/
|
|
hrsrc = FindResourceEx32W(instance,(LPWSTR)1,(LPCWSTR)RT_MESSAGELIST,lang);
|
|
if (!hrsrc) return 0;
|
|
hmem = LoadResource32( instance, hrsrc );
|
|
if (!hmem) return 0;
|
|
|
|
p = LockResource32(hmem);
|
|
nrofentries = *(DWORD*)p;
|
|
stre = NULL;
|
|
se = (struct _subentry*)(p+4);
|
|
for (i=nrofentries;i--;) {
|
|
if ((id>=se->firstentry) && (id<=se->lastentry)) {
|
|
stre = (struct _stringentry*)(p+se->offset);
|
|
id -= se->firstentry;
|
|
break;
|
|
}
|
|
se++;
|
|
}
|
|
if (!stre)
|
|
return 0;
|
|
for (i=id;i--;) {
|
|
if (!(slen=stre->len))
|
|
return 0;
|
|
stre = (struct _stringentry*)(((char*)stre)+slen);
|
|
}
|
|
slen=stre->len;
|
|
dprintf_resource(stddeb," - strlen=%d\n",slen);
|
|
i = MIN(buflen - 1, slen);
|
|
if (buffer == NULL)
|
|
return slen; /* different to LoadString */
|
|
if (i>0) {
|
|
lstrcpyn32A(buffer,stre->str,i);
|
|
buffer[i]=0;
|
|
} else {
|
|
if (buflen>1) {
|
|
buffer[0]=0;
|
|
return 0;
|
|
}
|
|
}
|
|
if (buffer)
|
|
dprintf_resource(stddeb,"LoadMessage // '%s' copied !\n", buffer);
|
|
return i;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* LoadMessage32W (internal)
|
|
*/
|
|
INT32
|
|
LoadMessage32W(
|
|
HINSTANCE32 instance,UINT32 id,WORD lang,LPWSTR buffer,int buflen
|
|
) {
|
|
LPSTR buffer2 = buffer?(LPSTR)xmalloc(buflen):NULL;
|
|
INT32 retval = LoadMessage32A(instance,id,lang,buffer2,buflen);
|
|
|
|
if (buffer) {
|
|
STRING32_AnsiToUni(buffer,buffer2);
|
|
free(buffer2);
|
|
}
|
|
return retval;
|
|
}
|
|
|