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.
57 lines
921 B
57 lines
921 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
|
//
|
|
// File: guid.h
|
|
//
|
|
// Contents: extern references for LDAP guids
|
|
//
|
|
// History: 16-Jan-95 KrishnaG
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __GUID_H__
|
|
#define __GUID_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//-------------------------------------------
|
|
//
|
|
// LDAPOle CLSIDs
|
|
//
|
|
//-------------------------------------------
|
|
|
|
|
|
//
|
|
// LDAPOle objects
|
|
//
|
|
|
|
extern const IID LIBID_ADSMSExtensions;
|
|
|
|
|
|
extern const CLSID CLSID_MSExtUser;
|
|
|
|
extern const CLSID CLSID_MSExtOrganization;
|
|
|
|
extern const CLSID CLSID_MSExtOrganizationUnit;
|
|
|
|
extern const CLSID CLSID_MSExtLocality;
|
|
|
|
extern const CLSID CLSID_MSExtPrintQueue;
|
|
|
|
extern const CLSID CLSID_MSExtGroup;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|