30 lines
667 B
C
30 lines
667 B
C
/******************************************************************
|
|
|
|
|
|
|
|
DFSCommon.H -- common defines for DFS classse
|
|
|
|
|
|
|
|
Copyright (c) 2000-2001 Microsoft Corporation, All Rights Reserved
|
|
|
|
*******************************************************************/
|
|
|
|
#ifndef _DFS_COMMON_H
|
|
#define _DFS_COMMON_H
|
|
|
|
// Namespace
|
|
#define Namespace L"root\\cimv2"
|
|
|
|
// Provider names
|
|
#define PROVIDER_NAME_DFSJNPT L"Win32_DfsNode"
|
|
#define PROVIDER_NAME_DFSREPLICA L"Win32_DfsTarget"
|
|
#define PROVIDER_NAME_DFSJNPTREPLICA L"Win32_DfsNodeTarget"
|
|
|
|
// Definef for the DFS Type
|
|
#define DFS_TYPE_STANDALONE 0
|
|
#define DFS_TYPE_FTDFS 1
|
|
|
|
|
|
#endif
|