e73b03adcc
* lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and objects. * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider): Remove. Moved to unknwn-uuid and servprov-uuid. * lib/unknwn-uuid.c: New file. * lib/servprov-uuid.c: New file.
11 lines
290 B
C
11 lines
290 B
C
/* unknwn-uuid.c */
|
|
/* Generate GUIDs for Unknown interfaces */
|
|
|
|
/* All IIDs defined in this file were extracted from
|
|
* HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\ */
|
|
|
|
#define INITGUID
|
|
#include <basetyps.h>
|
|
DEFINE_OLEGUID(IID_IUnknown,0,0,0);
|
|
DEFINE_OLEGUID(IID_IClassFactory,0x1,0,0);
|