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:

None.

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