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

IEnumGUID (Interfaces)
 
.
Summary
TODO - a short description

C# Definition:

    //Code from Hans Passant, http://stackoverflow.com/a/24078693/18192
    [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("0002E000-0000-0000-C000-000000000046")]
    public interface IEnumGUID
    {
        [PreserveSig]
        int Next(uint celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=0)] Guid[] rgelt, out uint pceltFetched);
        int Next(int celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=0)] Guid[] rgelt, out int pceltFetched);
        [PreserveSig]
        int Skip(uint celt);
        int Skip(int celt);
        [PreserveSig]
        int Reset();
        void Clone(out IEnumGUID ppenum);
    }

VB Definition:

    '=======================================================
    'Code converted from C# to VB by online service at Telerik (www.telerik.com)
    'Conversion powered by NRefactory, Built and maintained by Todd Anglin and Telerik
    'Converted code has not been tested.
    '=======================================================
    <ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("0002E000-0000-0000-C000-000000000046")> _
        Public Interface IEnumGUID
        <PreserveSig> _
        Function [Next](celt As Integer, <Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex := 0)> rgelt As Guid(), ByRef pceltFetched As Integer) As Integer
        <PreserveSig> _
        Function Skip(celt As Integer) As Integer
        <PreserveSig> _
        Function Reset() As Integer
        Sub Clone(ByRef ppenum As IEnumGUID)
    End Interface

User-Defined Types:

None.

Notes:

None.

Documentation
IEnumGUID on MSDN

Please edit this page!

Do you have...

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

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

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