mirror of https://github.com/macssh/macssh.git
*** empty log message ***
This commit is contained in:
parent
84a61847f8
commit
c7df4e3b3f
Binary file not shown.
|
@ -1,19 +1,20 @@
|
|||
/* rsinterf.proto.h */
|
||||
|
||||
|
||||
/* RSnewwindow Flags */
|
||||
/* RSnewwindow/VSnewscreen Flags */
|
||||
enum {
|
||||
RSWwrapon = 0x00000001,
|
||||
RSWshowit = 0x00000002,
|
||||
RSWgoaway = 0x00000004,
|
||||
RSWforcesave = 0x00000008,
|
||||
RSWallowBold = 0x00000010,
|
||||
RSWcolorBold = 0x00000020,
|
||||
RSWignoreBeeps = 0x00000040,
|
||||
RSWrealbold = 0x00000080,
|
||||
RSWsavelines = 0x00000100,
|
||||
RSWjumpscroll = 0x00000200,
|
||||
RSWrealBlink = 0x00000400
|
||||
RSWwrapon = 0x00000001,
|
||||
RSWshowit = 0x00000002,
|
||||
RSWgoaway = 0x00000004,
|
||||
RSWforcesave = 0x00000008,
|
||||
RSWallowBold = 0x00000010,
|
||||
RSWcolorBold = 0x00000020,
|
||||
RSWignoreBeeps = 0x00000040,
|
||||
RSWrealbold = 0x00000080,
|
||||
RSWoldscrollback = 0x00000100,
|
||||
RSWjumpscroll = 0x00000200,
|
||||
RSWrealBlink = 0x00000400,
|
||||
RSWvt7bit = 0x00000800
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ Boolean SSH2RandomizeDialog( long *type, long *level, long *encrypt, Str255 labe
|
|||
void SSH2ErrorDialog(char *mess1);
|
||||
|
||||
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 SSH2SOC2Dialog(const char *fingerprint);
|
||||
|
||||
|
|
|
@ -5,7 +5,9 @@ short donothing(void);
|
|||
short drawc(short vw, short c);
|
||||
void VGinit(void);
|
||||
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 VGdumpstore(short vw, short (*func )(short));
|
||||
void VGdraw(short vw, char c);
|
||||
|
|
Loading…
Reference in New Issue