58 lines
2.6 KiB
Plaintext
58 lines
2.6 KiB
Plaintext
#include <windows.h>
|
|
#include <ntverp.h>
|
|
#include "resource.h"
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#ifdef WIN95
|
|
#define VER_FILEDESCRIPTION_STR "Windows 95 FAX Transport Provider"
|
|
#else
|
|
#define VER_FILEDESCRIPTION_STR "Windows NT FAX Transport Provider"
|
|
#endif
|
|
#define VER_INTERNALNAME_STR "faxxp32.dll"
|
|
#define VER_ORIGINALFILENAME_STR "faxxp32.dll"
|
|
|
|
#include "common.ver"
|
|
|
|
IDI_FAX ICON DISCARDABLE "fax.ico"
|
|
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_NO_FAX_PRINTER "There are not any fax printers available"
|
|
IDS_CANT_ACCESS_PRINTER "Cannot access the fax printer"
|
|
IDS_RESOURCES_UNAVAIL "There are not enough available resource to send the fax message"
|
|
IDS_CANT_PRINT "Cannot print to the fax printer"
|
|
IDS_CANT_ACCESS_MSG_DATA "Cannot access the exchange message data"
|
|
IDS_CANT_ACCESS_PROFILE "Cannot access profile information"
|
|
IDS_BAD_ATTACHMENTS "Could not render all attachments"
|
|
IDS_PERSONAL "(Personal)"
|
|
IDS_FONT_REGULAR "Regular"
|
|
IDS_FONT_ITALIC "Italic"
|
|
IDS_FONT_BOLD "Bold "
|
|
IDS_FAX_MESSAGE "Exchange Fax Message"
|
|
END
|
|
|
|
FAX_CONFIG_DIALOG DIALOG DISCARDABLE 0, 0, 252, 220
|
|
STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Fax Mail Transport"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
ICON IDI_FAX, IDC_STATIC_ICON, 5, 5, 20, 20
|
|
LTEXT "Fax Attributes", IDC_STATIC_TITLE, 30, 11, 217, 8
|
|
LTEXT "Use the following fax &printer:", IDC_STATIC_PRINTERS, 5, 30, 242, 8
|
|
COMBOBOX IDC_PRINTER_LIST, 5, 43, 242, 66, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_GROUP | WS_TABSTOP
|
|
AUTOCHECKBOX "&Include a cover page. Use the following template:", IDC_USE_COVERPAGE, 5, 62, 242, 10, WS_GROUP
|
|
LISTBOX IDC_COVERPAGE_LIST, 5, 77, 242, 51, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
|
|
GROUPBOX "Default Message Font:", IDCSTATIC_FONT_GROUP, 5, 133, 242, 64
|
|
LTEXT "Font:", IDCSTATIC_FONT, 10, 146, 100, 8
|
|
LTEXT "Style:", IDCSTATIC_FONTSTYLE, 116, 145, 70, 8
|
|
LTEXT "Size:", IDCSTATIC_FONTSIZE, 190, 146, 50, 8
|
|
LTEXT "", IDC_FONT_NAME, 10, 159, 100, 14, 0, WS_EX_CLIENTEDGE
|
|
LTEXT "", IDC_FONT_STYLE, 115, 159, 70, 14, 0, WS_EX_CLIENTEDGE
|
|
LTEXT "", IDC_FONT_SIZE, 190, 159, 50, 14, 0, WS_EX_CLIENTEDGE
|
|
PUSHBUTTON "&Set Font...", IDC_SET_FONT, 190, 178, 50, 14, WS_GROUP
|
|
DEFPUSHBUTTON "OK", IDOK, 135, 202, 50, 14, WS_GROUP
|
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 202, 50, 14
|
|
END
|