31 lines
1 KiB
Plaintext
31 lines
1 KiB
Plaintext
|
#include <windows.h>
|
||
|
#include <ntverp.h>
|
||
|
#include "wpnpinst.h"
|
||
|
|
||
|
|
||
|
STRINGTABLE
|
||
|
BEGIN
|
||
|
IDS_ERR_FORMAT "%1!s!\nError Code: 0x%2!x!"
|
||
|
IDS_ERR_ERROR "Web Point and Print Install Error"
|
||
|
IDS_ERR_GENERIC "Generic Error.\n"
|
||
|
IDS_ERR_BADCAB "Corrupt Or Invalid CAB File.\n"
|
||
|
IDS_ERR_INVPARM "Invalid Parameter.\n"
|
||
|
IDS_ERR_NOMEM "Memory Allocation Failure.\n"
|
||
|
IDS_ERR_INVNAME "Invalid Cabinet Filename.\n"
|
||
|
IDS_ERR_NODAT "DAT File Not Found In Cabinet.\n"
|
||
|
IDS_ERR_CABFAIL "CAB Extraction Failed.\n"
|
||
|
IDS_ERR_NOPRTUI "Installation DLL Not Found.\n"
|
||
|
IDS_ERR_PRTUIENTRY "PRINTUIENTRY Function Not Found.\n"
|
||
|
IDS_ERR_PRTUIFAIL "PRINTUIENTRY Function Failed.\n"
|
||
|
IDS_ERR_NOSUPPORT "Not Supported On This OS Version.\n"
|
||
|
END
|
||
|
|
||
|
|
||
|
#define VER_FILETYPE VFT_DLL
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Support exe for Internet Printing"
|
||
|
#define VER_INTERNALNAME_STR "wpnpinst.exe"
|
||
|
#define VER_ORIGINALFILENAME_STR "wpnpinst.exe"
|
||
|
|
||
|
#include <common.ver>
|