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.
75 lines
2.4 KiB
75 lines
2.4 KiB
//****************************************************************************
|
|
//
|
|
// Module: Unimdm
|
|
// File: rcids.h
|
|
// Content: This file contain all the declaration for device setting
|
|
// resource ID
|
|
//
|
|
// Copyright (c) 1992-1993, Microsoft Corporation, all rights reserved
|
|
//
|
|
// History:
|
|
// Wed 15-Jun-1993 10:38:00 -by- Nick Manson [t-nickm]
|
|
// Fri 09-Apr-1993 14:41:01 -by- Viroon Touranachun [viroont]
|
|
//
|
|
//****************************************************************************
|
|
|
|
#ifndef _RCIDS_
|
|
#define _RCIDS_
|
|
|
|
#define MAXTITLE 32
|
|
#define MAXMESSAGE 256
|
|
|
|
//*****************************************************************************
|
|
// Icon ID number section
|
|
//*****************************************************************************
|
|
|
|
#define IDI_ICON 100
|
|
#define IDI_NULL 101
|
|
#define IDI_EXT_MDM 102
|
|
#define IDI_INT_MDM 103
|
|
#define IDI_PCM_MDM 104
|
|
|
|
// Terminal Mode Setting
|
|
//
|
|
#define IDD_TERMINALSETTING 1000
|
|
#define IDC_TERMINAL_PRE (IDD_TERMINALSETTING)
|
|
#define IDC_TERMINAL_POST (IDD_TERMINALSETTING+1)
|
|
#define IDC_MANUAL_DIAL (IDD_TERMINALSETTING+2)
|
|
#define IDC_LAUNCH_LIGHTS (IDD_TERMINALSETTING+3)
|
|
#define IDC_TERMINALGRP (IDD_TERMINALSETTING+4)
|
|
#define IDC_MANUAL_DIALGRP (IDD_TERMINALSETTING+5)
|
|
#define IDC_LAUNCH_LIGHTSGRP (IDD_TERMINALSETTING+6)
|
|
#define IDC_WAIT_TEXT (IDD_TERMINALSETTING+7)
|
|
#define IDC_WAIT_SEC (IDD_TERMINALSETTING+8)
|
|
#define IDC_WAIT_SEC_ARRW (IDD_TERMINALSETTING+9)
|
|
#define IDC_WAIT_UNIT (IDD_TERMINALSETTING+10)
|
|
#define IDC_PHONENUMBER (IDD_TERMINALSETTING+11)
|
|
|
|
#define IDD_TERMINALDLG 1150
|
|
#define CID_T_EB_SCREEN (IDD_TERMINALDLG)
|
|
#define CID_T_PB_ENTER (IDD_TERMINALDLG+1)
|
|
|
|
// Talk Drop Dialog
|
|
//
|
|
#define IDD_TALKDROP 1300
|
|
#define IDTALK (IDD_TALKDROP)
|
|
#define IDDROP (IDD_TALKDROP+1)
|
|
|
|
// Manual Dial Dialog
|
|
//
|
|
#define IDD_MANUAL_DIAL 1400
|
|
#define IDCONNECT (IDD_MANUAL_DIAL)
|
|
|
|
// Resources
|
|
//
|
|
#define ID_STRING_BASE 100
|
|
#define ID_PROVIDER_INFO ID_STRING_BASE+0
|
|
#define IDS_PRETERM_TITLE ID_STRING_BASE+1
|
|
#define IDS_POSTTERM_TITLE ID_STRING_BASE+2
|
|
|
|
#define IDS_ERR_TITLE 1000
|
|
#define IDS_ERR_INSTALLED IDS_ERR_TITLE+1
|
|
#define IDS_ERR_INV_WAIT IDS_ERR_TITLE+2
|
|
|
|
|
|
#endif //_RCIDS_
|