34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2000
|
|
//
|
|
// File: cstrings.cpp
|
|
//
|
|
// Contents: Defines the global strings that are used in the parser
|
|
//
|
|
// History: 07-Sep-2000 JeffJon Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include "pch.h"
|
|
|
|
PCWSTR c_sz_arg1_com_debug = L"debug";
|
|
PCWSTR c_sz_arg1_com_help = L"h";
|
|
PCWSTR c_sz_arg2_com_help = L"?";
|
|
PCWSTR c_sz_arg1_com_server = L"s";
|
|
PCWSTR c_sz_arg2_com_server = L"server";
|
|
PCWSTR c_sz_arg1_com_domain = L"d";
|
|
PCWSTR c_sz_arg2_com_domain = L"domain";
|
|
PCWSTR c_sz_arg1_com_username = L"u";
|
|
PCWSTR c_sz_arg2_com_username = L"username";
|
|
PCWSTR c_sz_arg1_com_password = L"p";
|
|
PCWSTR c_sz_arg2_com_password = L"password";
|
|
PCWSTR c_sz_arg1_com_quiet = L"q";
|
|
PCWSTR c_sz_arg1_com_noprompt = L"noprompt";
|
|
PCWSTR c_sz_arg1_com_continue = L"C";
|
|
PCWSTR c_sz_arg1_com_subtree = L"subtree";
|
|
PCWSTR c_sz_arg1_com_exclude = L"exclude";
|
|
PCWSTR c_sz_arg1_com_objectDN = L"Target object for this command";
|
|
PCWSTR g_pszDSCommandName = L"dsrm";
|