@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Access the Global Running Object Table. !!!!C# Definition: [ ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("00000146-0000-0000-C000-000000000046") ] interface IGlobalInterfaceTable { uint RegisterInterfaceInGlobal( [MarshalAs(UnmanagedType.IUnknown)] object pUnk, [In] ref Guid riid); void RevokeInterfaceFromGlobal(uint dwCookie); [return: MarshalAs(UnmanagedType.IUnknown)] object GetInterfaceFromGlobal(uint dwCookie, [In] ref Guid riid); } [ ComImport, Guid("00000323-0000-0000-C000-000000000046") ] class StdGlobalInterfaceTable /* : IGlobalInterfaceTable */ { } !!!!VB Definition: <ComImport> _ <Guid("TODO")> _ 'TODO: Insert <InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _ if this doesn't derive from IDispatch Interface IGlobalInterfaceTable TODO End Interface !!!!User-Defined Types: None. !!!!Notes: Create a new StdGlobalInterfaceTable object and cast it to the IGlobalInterfaceTable interface. '''Example:''' IGlobalInterfaceTable pGIT = (IGlobalInterfaceTable) new StdGlobalInterfaceTable(); Documentation: IGlobalInterfaceTable@msdn on MSDN
Edit Interfaces.IGloba...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.