12 lines
455 B
C
12 lines
455 B
C
/* oleacc-uuid.c */
|
|
/* Generate GUIDs for OLE Accessibility interfaces */
|
|
|
|
/* All IIDs defined in this file were extracted from
|
|
* HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\ */
|
|
|
|
#define INITGUID
|
|
#include <basetyps.h>
|
|
DEFINE_GUID(IID_IAccessible,0x618736e0,0x3c3d,0x11cf,0x81,0x0c,0x00,0xaa,0x00,0x38,0x9b,0x71);
|
|
// IAccessibleHandler TypeLib
|
|
DEFINE_GUID(LIBID_Accessibility, 0x1ea4dbf0, 0x3c3b,0x11cf, 0x81, 0x0c, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
|