Var Type CLSID??????

Started by
0 comments, last by KrAkPiPeR 22 years, 2 months ago
Does anyone know what a pointer to a class identifier is?
Advertisement
A CLSID is a typedef for a GUID.
A GUID is a typedef for a _GUID.
A _GUID is defined as:

  typedef struct _GUID{    unsigned long  Data1;    unsigned short Data2;    unsigned short Data3;    unsigned char  Data4[8];} GUID;  

This topic is closed to new replies.

Advertisement