*** empty log message ***

This commit is contained in:
chombier 2001-05-17 10:17:01 +00:00
parent 84a61847f8
commit c7df4e3b3f
4 changed files with 17 additions and 14 deletions

Binary file not shown.

View File

@ -1,19 +1,20 @@
/* rsinterf.proto.h */ /* rsinterf.proto.h */
/* RSnewwindow Flags */ /* RSnewwindow/VSnewscreen Flags */
enum { enum {
RSWwrapon = 0x00000001, RSWwrapon = 0x00000001,
RSWshowit = 0x00000002, RSWshowit = 0x00000002,
RSWgoaway = 0x00000004, RSWgoaway = 0x00000004,
RSWforcesave = 0x00000008, RSWforcesave = 0x00000008,
RSWallowBold = 0x00000010, RSWallowBold = 0x00000010,
RSWcolorBold = 0x00000020, RSWcolorBold = 0x00000020,
RSWignoreBeeps = 0x00000040, RSWignoreBeeps = 0x00000040,
RSWrealbold = 0x00000080, RSWrealbold = 0x00000080,
RSWsavelines = 0x00000100, RSWoldscrollback = 0x00000100,
RSWjumpscroll = 0x00000200, RSWjumpscroll = 0x00000200,
RSWrealBlink = 0x00000400 RSWrealBlink = 0x00000400,
RSWvt7bit = 0x00000800
}; };

View File

@ -38,7 +38,7 @@ Boolean SSH2RandomizeDialog( long *type, long *level, long *encrypt, Str255 labe
void SSH2ErrorDialog(char *mess1); void SSH2ErrorDialog(char *mess1);
Boolean SSH2LoginDialog(StringPtr inhost, StringPtr iologin, StringPtr outpassword); Boolean SSH2LoginDialog(StringPtr inhost, StringPtr iologin, StringPtr outpassword);
Boolean SSH2PasswordDialog (const char *inprompt, StringPtr outpassword); Boolean SSH2PasswordDialog (const char *inprompt, StringPtr outpassword, WindowPtr term);
short SSH2SOC1Dialog(const char *fingerprint); short SSH2SOC1Dialog(const char *fingerprint);
short SSH2SOC2Dialog(const char *fingerprint); short SSH2SOC2Dialog(const char *fingerprint);

View File

@ -5,7 +5,9 @@ short donothing(void);
short drawc(short vw, short c); short drawc(short vw, short c);
void VGinit(void); void VGinit(void);
short VGdevice(short vw, short dev); short VGdevice(short vw, short dev);
short VGnewwin(short device, short theVS); short VGnewwin(short device, short theVS, short tek4105, short tekclear);
short VGgettektype(short vw);
short VGgettekclear(short vw);
void VGclrstor(short vw); void VGclrstor(short vw);
void VGdumpstore(short vw, short (*func )(short)); void VGdumpstore(short vw, short (*func )(short));
void VGdraw(short vw, char c); void VGdraw(short vw, char c);