mirror of https://github.com/tongzx/nt5src
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.
27 lines
921 B
27 lines
921 B
#include <windows.h>
|
|
#include "relog.h"
|
|
#include "resource.h"
|
|
|
|
#include <ntverp.h>
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR RELOG_RESOURCE_STRING
|
|
#define VER_INTERNALNAME_STR "RELOG.EXE"
|
|
#define VER_ORIGINALFILENAME_STR "RELOG.EXE"
|
|
|
|
#include "common.ver"
|
|
|
|
#include "varg.rc"
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_PARAM_APPEND "append`a`*`Append"
|
|
IDS_PARAM_BEGIN "begin`b`*`Begin Time"
|
|
IDS_PARAM_END "end`e`*`End Time"
|
|
IDS_PARAM_FORMAT "format`f`*`Output file format( CSV, TSV, BLG )"
|
|
IDS_PARAM_INPUT "input`i`*`Input File"
|
|
IDS_PARAM_INTERVAL "interval`t`*`Samples to skip"
|
|
IDS_PARAM_OUTPUT "out`o`*`Output File"
|
|
IDS_PARAM_QUERY "query`q`*`List counters in file"
|
|
IDS_PARAM_COUNTERFILE "counterfile`cf`*`Counter File"
|
|
END
|