forked from billti/v8dbg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbgext.rc
More file actions
19 lines (16 loc) · 741 Bytes
/
dbgext.rc
File metadata and controls
19 lines (16 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <windows.h>
#include <ntverp.h>
#undef VER_PRODUCTNAME_STR
#undef VER_PRODUCTVERSION
#undef VER_PRODUCTVERSION_STR
#define VER_FILETYPE VFT_DLL
#define VER_FILESUBTYPE VFT_UNKNOWN
#define VER_FILEDESCRIPTION_STR "V8 debug extension"
#define VER_PRODUCTNAME_STR "V8 debug extension"
#define VER_INTERNALNAME_STR "v8dbg.dll"
#define VER_PRODUCTVERSION 1,00,00,000
#define VER_PRODUCTVERSION_STR "1.0.0.0"
#define VER_LEGALCOPYRIGHT_YEARS "2019"
#define VER_LEGALCOPYRIGHT_STR_WITH_YEARS L"\251 2019 Bill Ticehurst"
#define VER_LEGALCOPYRIGHT_STR L"\251 Bill Ticehurst"
#include <common.ver>