On 07/06/2010 03:15 PM, Paul Chitescu wrote:
Changelog: ntdll: Stub system service requests in i386 mode (Int 2E, SYSENTER, SYSCALL)
- WINE_FIXME( "(0x%02X, %p): stub\n", index, param_block );
WINE_TRACE( "INT 2E at 08%x\n", context->Eip );
Any particular reason you using these and not FIXME/TRACE ?
Vitaliy.
On Thursday 08 July 2010 07:09:58 pm Vitaliy Margolen wrote:
On 07/06/2010 03:15 PM, Paul Chitescu wrote:
Changelog: ntdll: Stub system service requests in i386 mode (Int 2E, SYSENTER,
SYSCALL)
- WINE_FIXME( "(0x%02X, %p): stub\n", index, param_block );
WINE_TRACE( "INT 2E at 08%x\n", context->Eip );
Any particular reason you using these and not FIXME/TRACE ?
Vitaliy.
Because they work, I didn't investigate why.
My first attempt while debugging was with regular WARN/ERR/FIXME and it didn't display a thing. I got really confused until I noticed WINE_... elsewhere in the file.
Paul