66 lines
1,022 B
C
66 lines
1,022 B
C
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997
|
|
//
|
|
// File: guid.h
|
|
//
|
|
// Contents: extern references for IIS guids
|
|
//
|
|
// History:
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __GUID_H__
|
|
#define __GUID_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//-------------------------------------------
|
|
//
|
|
// IISOle CLSIDs
|
|
//
|
|
//-------------------------------------------
|
|
|
|
|
|
//
|
|
// IISOle objects
|
|
//
|
|
|
|
|
|
extern const CLSID CLSID_IISGenObject;
|
|
|
|
|
|
extern const CLSID CLSID_IISTree;
|
|
|
|
extern const CLSID CLSID_IISSchema;
|
|
|
|
extern const CLSID CLSID_IISClass;
|
|
|
|
extern const CLSID CLSID_IISProperty;
|
|
|
|
extern const CLSID CLSID_IISSyntax;
|
|
|
|
|
|
extern const CLSID LIBID_IISOle;
|
|
|
|
extern const CLSID CLSID_IISNamespace;
|
|
|
|
extern const CLSID CLSID_IISProvider;
|
|
|
|
extern const CLSID CLSID_IISMimeType;
|
|
|
|
extern const CLSID CLSID_IISPropertyAttribute;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|