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.
26 lines
729 B
26 lines
729 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2000
|
|
//
|
|
// File: cstrings.h
|
|
//
|
|
// Contents: Declares the global strings that are used in the parser
|
|
//
|
|
// History: 07-Sep-2000 JeffJon Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _CSTRINGS_H_
|
|
#define _CSTRINGS_H_
|
|
|
|
#include "commonstrings.h"
|
|
|
|
extern PCWSTR c_sz_arg1_com_continue;
|
|
extern PCWSTR c_sz_arg1_com_noprompt;
|
|
extern PCWSTR c_sz_arg1_com_subtree;
|
|
extern PCWSTR c_sz_arg1_com_exclude;
|
|
extern PCWSTR c_sz_arg1_com_objectDN;
|
|
extern PCWSTR g_pszDSCommandName;
|
|
|
|
#endif //_CSTRINGS_H_
|