CGuidNameList Class

This class implements an array of globally unique identifier (GUID) names based on the predefined names of GUIDs that come with Microsoft® DirectShow™. (This might or might not include user-defined GUIDs.) To get the name used for a GUID, look it up in the GuidNames array:

int MyFunc(AM_MEDIA_TYPE mt)
{
    DbgLog((LOG_TRACE, 2, TEXT("MyFunc: Type %s, Subtype %s"),
        GuidNames[mt.majortype],
        GuidNames[mt.subtype]
        ));
...
}

Operators

operator[ ] Allows access to the GUID name for a given GUID.

Global Data

GuidNames Array of CGuidNameList objects describing the predefined names of GUIDs that come with DirectShow. (This might or might not include user-defined GUIDs.)

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.