Skip to content

Instantly share code, notes, and snippets.

@zeux
Created April 22, 2012 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeux/2467341 to your computer and use it in GitHub Desktop.
Save zeux/2467341 to your computer and use it in GitHub Desktop.
IDiaEnumInjectedSources
public interface IDiaEnumInjectedSources
{
int count;
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalType =
"System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler")]
IEnumerator GetEnumerator();
IDiaInjectedSource Item(uint index);
void Next(uint celt, out IDiaInjectedSource rgelt, out uint pceltFetched);
void Skip(uint celt);
void Reset();
void Clone(out IDiaEnumInjectedSources ppenum);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment