Robert Reif wrote:
Thanks for the pointer. There was a patch submitted back in 2003 for
SharedUserData
but it wasn't committed.
Is anyone working on implementing SharedUserData for a more recent
version of wine?
We've got a hack that makes safedisc happy, not currently in CVS.
Ivan.
Vitaliy Margolen wrote:
0x7ffe is SharedUserData that is present on all NT+ systems. It's format
only documented in DDK for kernel address space and only for some first several
values.
This structure keeps growing as I understand and no one except MS knows what's
all in it. We do need this
> "Robert" == Robert Reif <[EMAIL PROTECTED]> writes:
Robert> I am getting this exception: Unhandled exception: page fault on
Robert> read access to 0x7ffe02d8 in 32-bit code (0x51102a96).
Robert> and I found this in winternal.h:
Robert> #if (_WIN32_WINNT >= 0x0501) #define
Vitaliy Margolen wrote:
0x7ffe is SharedUserData that is present on all NT+ systems. It's format
only documented in DDK for kernel address space and only for some first several
values.
This structure keeps growing as I understand and no one except MS knows what's
all in it. We do need this s
You can see the start of what's there in include/ddk/wdm.h, it's the
KSHARED_USER_DATA struct.
It's meant to be read only memory for user mode.
Ivan.
Wednesday, October 5, 2005, 9:24:00 PM, Robert Reif wrote:
> I am getting this exception:
> Unhandled exception: page fault on read access to 0x7ffe02d8 in 32-bit
> code (0x51102a96).
> and I found this in winternal.h:
#if (_WIN32_WINNT >>= 0x0501)
> #define INTERNAL_TS_ACTIVE_CONSOLE_ID ( *((v
I am getting this exception:
Unhandled exception: page fault on read access to 0x7ffe02d8 in 32-bit
code (0x51102a96).
and I found this in winternal.h:
#if (_WIN32_WINNT >= 0x0501)
#define INTERNAL_TS_ACTIVE_CONSOLE_ID ( *((volatile ULONG*)(0x7ffe02d8)) )
#endif /* (_WIN32_WINNT >= 0x0501) */