42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// 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_
|