Is there some documented way to access SharedUserData structure from user
mode?

Thanks for assistance.

Re: SharedUserData by Maxim

Maxim
Tue Sep 21 19:11:07 CDT 2004

It is accessed by calls like GetTickCount or GetSystemTime. See the
disassembly.

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
maxim@storagecraft.com
http://www.storagecraft.com

"Alex" <wint69@pisem.net> wrote in message
news:u6L10Z$nEHA.3252@TK2MSFTNGP14.phx.gbl...
> Is there some documented way to access SharedUserData structure from user
> mode?
>
> Thanks for assistance.
>
>



Re: SharedUserData by George

George
Thu Sep 23 09:27:27 CDT 2004

Alex,

On x86 systems it is mapped into user address space at 0x7ffe0000 but this
is not officially supported as far as I know. The kernel mode address is
documented in the DDK and is defined by the constant KI_USER_SHARED_DATA.
User and kernel mode addresses are mapped to the same physical location.

Hope this helps.

Regards,

George.