32 lines
1.1 KiB
C++
32 lines
1.1 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_newparent = L"newparent";
|
||
|
PCWSTR c_sz_arg1_com_newname = L"newname";
|
||
|
PCWSTR c_sz_arg1_com_objectDN = L"Target object for this command";
|
||
|
PCWSTR g_pszDSCommandName = L"dsmove";
|