Desktop Functions: Smart Device Functions:
|
Search Results for "USER_INFO_0" in [All]Structures1: USER_INFO_0
netapi322: NetUserEnum
Dim Users(EntriesRead) As USER_INFO_0
Users(i) = CType(Marshal.PtrToStructure(iter, GetType(USER_INFO_0)), USER_INFO_0)
iter = New IntPtr(iter.ToInt32 + Marshal.SizeOf(GetType(USER_INFO_0)))
USER_INFO_0 anUser = (USER_INFO_0)Marshal.PtrToStructure(iter, typeof(USER_INFO_0));
iter = iter + Marshal.SizeOf(typeof(USER_INFO_0));
public struct WKSTA_USER_INFO_0 4: USER_INFO_0
5: USER_INFO_1 What's with all this unmanaged nonsense? USER_INFO_0, USER_INFO_23, and many other structures on this site, manage not to resort to such ugliness. |