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
957 B
57 lines
957 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
|
//
|
|
// File: guid.h
|
|
//
|
|
// Contents: extern references for NDS guids
|
|
//
|
|
// History: 16-Jan-95 KrishnaG
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __GUID_H__
|
|
#define __GUID_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//-------------------------------------------
|
|
//
|
|
// NDSOle CLSIDs
|
|
//
|
|
//-------------------------------------------
|
|
|
|
|
|
//
|
|
// NDSOle objects
|
|
//
|
|
|
|
extern const CLSID LIBID_NDSOle;
|
|
|
|
extern const CLSID CLSID_NDSNamespace;
|
|
|
|
extern const CLSID CLSID_NDSGenObject;
|
|
|
|
extern const CLSID CLSID_NDSProvider;
|
|
|
|
extern const CLSID CLSID_NDSTree;
|
|
|
|
extern const CLSID CLSID_NDSSchema;
|
|
|
|
extern const CLSID CLSID_NDSClass;
|
|
|
|
extern const CLSID CLSID_NDSProperty;
|
|
|
|
extern const CLSID CLSID_NDSSyntax;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|