home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR10
/
CU_STRUC.ZIP
/
CU-STRUC.DOC
Wrap
Text File
|
1993-03-01
|
4KB
|
90 lines
/******************************************************************************/
/* C O M M U N I Q U É */
/* */
/* */
/* Communiqué Dialing Directory Data Structure */
/* */
/* */
/* */
/* BY : Adam Blake Copyright (c) 1993 */
/* VER : 1.11 Wandoo Valley Corp. */
/* DATE: 1st March 1993 Wandoo Valley Software */
/* All Rights Reserved */
/******************************************************************************/
/*******************************"C" Structures*********************************/
typedef unsigned char byte;
typedef unsigned char bool;
typedef struct {
char NameLength;
char Name[30];
char NumberLength;
char Number[20];
char PasswordLength;
char Password[20];
long BaudRate;
byte DataBits;
byte StopBits;
byte Parity;
byte DialSuffix;
byte DialPrefix;
byte Emulation;
byte Protocol;
byte Profile;
byte MiscStatus;
bool Avatar;
bool LineFeed;
bool Translate;
bool LocalEcho;
bool WordWrap;
bool IEMSI;
char MacroLength;
char Macro[8];
char ScriptLength;
char Script[8];
long LastTime;
long LastDate;
long NoteRec; /*Not implemented in shareware version*/
bool Tagged;
char Future[11];
} DialingDirectory;
(******************************PASCAL Structures*******************************)
type
DialingDirectory = record
Name : string[30];
Number : string[20];
Password : string[20];
BaudRate : longint;
DataBits,
StopBits,
Parity : byte;
DialSuffix,
DialPrefix,
Emulation,
Protocol,
Profile,
MiscStatus : byte;
Avatar,
LineFeed,
Translate,
LocalEcho,
WordWrap,
IEMSI : boolean;
Macro,
Script : string[8];
LastTime,
LastDate,
NoteRec : longint; (*Not implemented in shareware version*)
Tagged : boolean;
Future : string[10];
end;