Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
GetUserObjectInformation (user32)
.
C# Signature:
[DllImport("user32.dll", SetLastError=true)]
static extern bool GetUserObjectInformation(IntPtr hObj, int nIndex,
[Out] byte [] pvInfo, uint nLength, out uint lpnLengthNeeded);
VB.NET Signature:
<DllImport("user32.dll", SetLastError:=True)> _
Private Shared Function GetUserObjectInformation(ByVal hObj As IntPtr, ByVal nIndex As Int32, ByRef pvInfo As Byte(), <MarshalAs(UnmanagedType.I4)> ByVal nLength As Int32, <MarshalAs(UnmanagedType.I4)> ByRef lpnLengthNeeded As Int32) As Boolean
End Function
User-Defined Types:
None.
VB.NET Notes:
This line is required at the top of the code module for the 'MarshalAs' attribute:
private const int UOI_FLAGS = 1;
private const int UOI_NAME = 2;
private const int UOI_TYPE = 3;
private const int UOI_USER_SID = 4;
private const int UOI_HEAPSIZE = 5; //Windows Server 2003 and Windows XP/2000: This value is not supported.
private const int UOI_IO = 6; //Windows Server 2003 and Windows XP/2000: This value is not supported.
private const int UOI_HEAPSIZE = 5;
private const int UOI_IO = 6;
Tips & Tricks:
Please add some!
Sample Code:
[DllImport("user32.dll", SetLastError = true)]
static extern bool GetUserObjectInformation(IntPtr hObj, int nIndex,
out ulong pvInfo, uint nLength, out uint lpnLengthNeeded);
Please add some!
private void Form1_Load(object sender, EventArgs e)
{
Desktop desktop = Desktop.GetCurrent(); //Desktop class from http://www.codeproject.com/KB/cs/csdesktopswitching.aspx
IntPtr hdesk = desktop.DesktopHandle;
ulong heapsize;
uint lengthNeeded;
if (GetUserObjectInformation(hdesk, UOI_HEAPSIZE, out heapsize, sizeof(ulong), out lengthNeeded))
{
Text = "Heapsize:" + heapsize;
}
}
Alternative Managed API:
Do you know one? Please contribute it!
The GetUserObjectInformation API
10/20/2011 10:55:06 AM - -66.103.226.30
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).