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.
45 lines
1.5 KiB
45 lines
1.5 KiB
#include <windows.h>
|
|
#include "wowfaxui.h"
|
|
|
|
STRINGTABLE
|
|
|
|
BEGIN
|
|
WOWFAX_UNKNOWN_PROB_STR "Unknown print problem"
|
|
WOWFAX_SELF_CONFIG_STR "This driver is self configuring. No setup is needed."
|
|
WOWFAX_NAME_STR "Windows 3.1 Compatible Fax Driver"
|
|
WOWFAX_NOWOW_STR "Unable to start WOW. Verify the ability to run a Win 16 application and retry."
|
|
WOWFAX_ENABLE_CONFIG_STR "Please click the OK button to enable the configuration settings for the 16-bit Fax Driver."
|
|
END
|
|
|
|
IDD_DOCPROP DIALOG DISCARDABLE 0, 0, 252, 216
|
|
STYLE WS_CHILD | WS_VISIBLE | WS_CAPTION
|
|
CAPTION "WowFax Options"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Please press the Configure button to set default options for the 16-bit Fax Driver.",IDC_STATIC,8,12,240,24
|
|
LTEXT "", IDC_FEEDBACK, 8, 84, 240, 24
|
|
PUSHBUTTON "Configure", IDOK, 8, 48, 64, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
END
|
|
|
|
IDD_NULLPROP DIALOG DISCARDABLE 0, 0, 252, 216
|
|
STYLE WS_CHILD | WS_VISIBLE | WS_CAPTION
|
|
CAPTION "WowFax"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Global configuration of 16-bit fax drivers is not supported",
|
|
IDC_STATIC,10,15,230,32
|
|
END
|
|
|
|
|
|
#include <ntverp.h>
|
|
#define VER_FILEVERSION 0, 2, 0, 0
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_DRV_PRINTER
|
|
#define VER_FILEDESCRIPTION_STR "Windows 3.1 Compatible Fax Driver UI DLL"
|
|
#define VER_INTERNALNAME_STR "wowfaxui.dll"
|
|
#define VER_ORIGINALFILENAME_STR "wowfaxui.dll"
|
|
|
|
#include "common.ver"
|
|
|
|
|