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.
29 lines
667 B
29 lines
667 B
/******************************************************************
|
|
|
|
|
|
|
|
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
|