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.
63 lines
2.6 KiB
63 lines
2.6 KiB
//
|
|
// Global strings here.
|
|
//
|
|
|
|
/******************* Includes and Controlling Defines ***********************/
|
|
#include "pch.h"
|
|
|
|
/*************** Initialized data ****************************************/
|
|
|
|
// #pragma data_seg(DATASEG_READONLY)
|
|
|
|
const _TCHAR szReintClass[] = _T("AgentClass"); // main window class name
|
|
const _TCHAR szReintWnd[] = _T("Agent"); // main window name
|
|
const _TCHAR szShadowDevice[] = _T("\\\\.\\shadow");
|
|
const _TCHAR szCreateError[] = _T("Couldn't create shadow device file");
|
|
const _TCHAR szCreateOK[] = _T("Created shadow device file");
|
|
const _TCHAR szConnectError[] = _T("Couldn't register with shadow device");
|
|
const _TCHAR szConnectOK[] = _T("Registered with shadow device");
|
|
const _TCHAR szPanic[]=_T("Panic");
|
|
const _TCHAR szTimeDateFormat[] = _T("\r\n%02d:%02d:%02.2d %02d-%02d-%02d\r\n");
|
|
const _TCHAR szSeekErr[]=_T("Seek Error");
|
|
const _TCHAR szReadErr[]=_T("Read Error");
|
|
const _TCHAR szWriteErr[]=_T("Write Error");
|
|
const _TCHAR szMinSparseFillPri[]=_T("SparseFillAbove");
|
|
const _TCHAR sz386Enh[]=_T("386enh");
|
|
const _TCHAR szSystemIni[]=_T("system.ini");
|
|
const _TCHAR szConflictMsg[]=_T("Errors/Conflicts while merging! Check c:\\merge.log");
|
|
const _TCHAR szLogFile[]=_T("C:\\merge.log");
|
|
const _TCHAR szConflictDir[]=_T("C:\\ConflictsWhileMerging");
|
|
const _TCHAR szSlash[]=_T("\\");
|
|
const _TCHAR szOpsInProgress[] = _T("Close all open files on %s");
|
|
const _TCHAR szShadowReg[]=_T("System\\CurrentControlSet\\Services\\VxD\\Shadow");
|
|
const _TCHAR szExclHint[]=_T("ExcludeExtensions");
|
|
const _TCHAR szExclDelim[]=_T(", ;");
|
|
const _TCHAR szDoLogCopy[]=_T("CopyLogToServer");
|
|
|
|
// #pragma data_seg()
|
|
|
|
const _TCHAR * vszReintClass=szReintClass;
|
|
const _TCHAR * vszReintWnd=szReintWnd;
|
|
const _TCHAR * vszShadowDevice=szShadowDevice;
|
|
const _TCHAR * vszCreateError=szCreateError;
|
|
const _TCHAR * vszCreateOK=szCreateOK;
|
|
const _TCHAR * vszConnectError=szConnectError;
|
|
const _TCHAR * vszConnectOK=szConnectOK;
|
|
const _TCHAR * vszPanic=szPanic;
|
|
const _TCHAR * vszTimeDateFormat=szTimeDateFormat;
|
|
const _TCHAR * vszSeekErr=szSeekErr;
|
|
const _TCHAR * vszReadErr=szReadErr;
|
|
const _TCHAR * vszWriteErr=szWriteErr;
|
|
const _TCHAR * vszMinSparseFillPri=szMinSparseFillPri;
|
|
const _TCHAR * vsz386Enh=sz386Enh;
|
|
const _TCHAR * vszSystemIni=szSystemIni;
|
|
const _TCHAR * vszConflictMsg=szConflictMsg;
|
|
const _TCHAR * vszLogFile=szLogFile;
|
|
const _TCHAR * vszConflictDir=szConflictDir;
|
|
const _TCHAR * vszSlash=szSlash;
|
|
const _TCHAR * vszOpsInProgress=szOpsInProgress;
|
|
const _TCHAR * vszShadowReg=szShadowReg;
|
|
const _TCHAR * vszExclHint=szExclHint;
|
|
const _TCHAR * vszExclDelim=szExclDelim;
|
|
const _TCHAR * vszDoLogCopy=szDoLogCopy;
|
|
|