Displaying 2 results from an estimated 2 matches for "image_resource_directori".
Did you mean:
image_resource_directory
2001 Dec 08
1
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
More information on exception #2. The offending function is:
/**********************************************************************
* find_entry_by_id
*
* Find an entry by id in a resource directory
*/
static const IMAGE_RESOURCE_DIRECTORY *find_entry_by_id( const
IMAGE_RESOURCE_DIRECTORY *dir,
WORD id, const
void *root )
{
2001 Dec 08
1
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
Hooray, I got gdb to do what I need, to skip the first exception and
break before the second.
The key commands are:
gdb (winepath)/bin/wine
Set the arguments:
> set args --winver nt40 yourapp
Tell gdb to pass segmentation faults to the program:
> handle SIGSEGV nostop pass
Set a breakpoint at main:
> b main
Run the program:
> run
This loads all the shared libraries, and