GetRunningObjectTable (ole32)
Last changed: -207.91.27.146

.
Summary

C# Signature:

    [DllImport("ole32.dll")]
    static extern int GetRunningObjectTable(uint reserved,
       out System.Runtime.InteropServices.ComTypes.IRunningObjectTable pprot);

User-Defined Types:

None.

Notes:

In .Net 2.0 use System.Runtime.InteropServices.ComTypes.IRunningObjectTabl as the second parameter. Frameworks 1.0 and 1.1 use a now deprecated type.

Tips & Tricks:

Please add some!

Sample Code:

     System.Runtime.InteropServices.ComTypes.IRunningObjectTable objTbl;
     Int32 hr = GetRunningObjectTable(0, out objTbl);
     if (hr == 0) // success
     {
     }
     else // failure
     {
     }

Alternative Managed API:

Do you know one? Please contribute it!

Documentation