27 lines
921 B
Plaintext
27 lines
921 B
Plaintext
#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 |