mirror of https://github.com/lianthony/NT4.0
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 <tapiver.h>
|
|
#include "pdisprc.h"
|
|
|
|
|
|
IDD_CFGDLG DIALOG DISCARDABLE 20, 15, 177, 95
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "PDI Configuration"
|
|
FONT 8, "MS Sans Serif"
|
|
BEGIN
|
|
LTEXT "&Communications Port",ID_STATIC,9,7,70,9,NOT WS_GROUP
|
|
COMBOBOX ID_PORT,9,18,90,52,CBS_DROPDOWNLIST | WS_VSCROLL |
|
|
WS_TABSTOP
|
|
LTEXT "&Line Name",ID_STATIC,8,36,100,8
|
|
EDITTEXT ID_LINENAME,9,46,90,12,ES_AUTOHSCROLL
|
|
LTEXT "Phone &Number",ID_STATIC,8,64,94,9
|
|
EDITTEXT ID_LINEADDR,9,73,90,12,ES_AUTOHSCROLL
|
|
DEFPUSHBUTTON "OK",IDOK,111,16,56,14
|
|
PUSHBUTTON "Cancel",IDCANCEL,111,36,56,14
|
|
END
|
|
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
ID_PROVIDER_INFO "Microsoft Internal Use PDI Modem Service Provider"
|
|
ID_MULTIPLE_INST "The selected service provider is already installed in the system and cannot support multiple instances."
|
|
ID_ATSP_ERROR "PDI Service Provider Error"
|
|
END
|
|
|
|
|
|
#if TAPI_NT
|
|
#include <ntverp.h>
|
|
#else
|
|
#include <version.h>
|
|
#endif
|
|
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) PDI Modem Service Provider"
|
|
#define VER_INTERNALNAME_STR "pdisp32"
|
|
#define VER_ORIGINALFILENAME_STR "PDISP32.TSP"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1995. All Rights Reserved."
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
#include <common.ver>
|