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.
42 lines
1.3 KiB
42 lines
1.3 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2000
|
|
//
|
|
// File: commonstrings.h
|
|
//
|
|
// Contents: Declares the global strings that are used in the parser
|
|
//
|
|
// History: 27-Aug-2001 JonN split from individual commands
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _COMMONSTRINGS_H_
|
|
#define _COMMONSTRINGS_H_
|
|
|
|
//
|
|
// Common switches
|
|
//
|
|
extern PCWSTR c_sz_arg1_com_debug;
|
|
extern PCWSTR c_sz_arg1_com_help;
|
|
extern PCWSTR c_sz_arg2_com_help;
|
|
extern PCWSTR c_sz_arg1_com_server;
|
|
extern PCWSTR c_sz_arg2_com_server;
|
|
extern PCWSTR c_sz_arg1_com_domain;
|
|
extern PCWSTR c_sz_arg2_com_domain;
|
|
extern PCWSTR c_sz_arg1_com_username;
|
|
extern PCWSTR c_sz_arg2_com_username;
|
|
extern PCWSTR c_sz_arg1_com_password;
|
|
extern PCWSTR c_sz_arg2_com_password;
|
|
extern PCWSTR c_sz_arg1_com_quiet;
|
|
extern PCWSTR c_sz_arg1_com_continue;
|
|
extern PCWSTR c_sz_arg1_com_description;
|
|
extern PCWSTR c_sz_arg1_com_objecttype;
|
|
extern PCWSTR c_sz_arg1_com_objectDN;
|
|
|
|
// Unicode switches
|
|
extern PCWSTR c_sz_arg1_com_unicode;
|
|
extern PCWSTR c_sz_arg1_com_unicodeinput;
|
|
extern PCWSTR c_sz_arg1_com_unicodeoutput;
|
|
|
|
#endif // _COMMONSTRINGS_H_
|