Leaked source code of windows server 2003
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.
|
|
// Copyright (c) 1998-1999 Microsoft Corporation
#include <windows.h> #include <ntverp.h>
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Debug Trace Utility" #define VER_INTERNALNAME_STR "dbgtrace.exe" #define VER_ORIGINALFILENAME_STR "dbgtrace.exe"
#include <verall.h> #include "common.ver" #include "dbgtrace.h" STRINGTABLE BEGIN IDS_USAGE_1 L"DBGTRACE [name] [/SYSTEM] [/ALL] [/C:class] [/E:enable] [/D] [/T] [/O:string] [/?]\n" IDS_USAGE_2 L"DBGTRACE [id] [/SYSTEM] [/ALL] [/C:class] [/E:enable] [/D] [/T] [/O:string] [/?]\n" IDS_ERROR_MALLOC L"Error allocating memory\n" IDS_ERROR_PARAMS L"Invalid parameter(s)\n" IDS_ERROR_SESSION L"ERROR: invalid Terminal Session %s\n" IDS_ERROR_SET_TRACE L"ERROR: unable to set trace information, %u\n" IDS_TRACE_DIS_LOG L"Trace disabled on WINFRAME.LOG\n" IDS_TRACE_EN_LOG L"Trace enabled on WINFRAME.LOG\n" IDS_TRACE_UNSUPP L"Trace on LogonId 0 not supported\n" IDS_TRACE_DISABLED L"Trace disabled on SessionId %u\n" IDS_TRACE_ENABLED L"Trace enabled on SessionId %u\n" IDS_ERROR_NOT_TS L"This utility needs Terminal Services to be running.\n"
END
|