29 lines
869 B
Plaintext
29 lines
869 B
Plaintext
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#include "sdevents.rc"
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Windows NT Save Dump Utility"
|
|
#define VER_INTERNALNAME_STR "savedump\0"
|
|
#define VER_ORIGINALFILENAME_STR "savedump.exe"
|
|
|
|
#include <common.ver>
|
|
|
|
//
|
|
// String table.
|
|
//
|
|
|
|
#include "erwatch.h"
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_000 "Microsoft Windows"
|
|
IDS_001 "Computer restarted after an unexpected shutdown. Microsoft Windows detected a possible device failure."
|
|
IDS_002 "The driver for the display device was unable to complete a drawing operation. Please check with the device manufacturer for a driver update."
|
|
IDS_003 "The display driver for "
|
|
IDS_004 "the display device"
|
|
IDS_005 " seems to be responsible for the system instability."
|
|
END
|