mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
742 B
43 lines
742 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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
|
|
|
|
|
|
|