44 lines
742 B
C
44 lines
742 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
||
|
//
|
||
|
// File: guid.h
|
||
|
//
|
||
|
// Contents: extern references for ADs guids
|
||
|
//
|
||
|
// History: 16-Jan-95 KrishnaG
|
||
|
//
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __GUID_H__
|
||
|
#define __GUID_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
//-------------------------------------------
|
||
|
//
|
||
|
// ADs CLSIDs
|
||
|
//
|
||
|
//-------------------------------------------
|
||
|
|
||
|
extern const CLSID CLSID_ADsNamespaces;
|
||
|
|
||
|
extern const CLSID CLSID_ADsProvider;
|
||
|
|
||
|
extern const CLSID CLSID_ADSI_BINDER;
|
||
|
|
||
|
extern const CLSID CLSID_Row;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|