Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Structures TOKEN_GROUPS (Enums)
 
.
Summary
Used when retrieving TOKEN_GROUPS structure from GetTokenInformation()

C# Definition:

Structures TOKEN_GROUPS
    public struct TOKEN_GROUPS {
        public uint GroupCount;
        [MarshalAs(UnmanagedType.ByValArray)] public SID_AND_ATTRIBUTES[] Groups;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct SID_AND_ATTRIBUTES {
        public IntPtr Sid;
        public uint Attributes;
    }

VB Definition:

Enum Structures TOKEN_GROUPS
   TODO
End Enum

Notes:

hhhhhhhhh

TOKEN_GROUPS TokenGroups = (TOKEN_GROUPS)Marshal.PtrToStructure(ptTokenGroups, typeof(TOKEN_GROUPS));

Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions