2020-07-24 00:46:29 +01:00
|
|
|
/* used as both a C and resource file include */
|
2020-07-20 23:14:57 +01:00
|
|
|
|
|
|
|
#ifndef __SSHEVEN_CONSTANTS_R__
|
|
|
|
#define __SSHEVEN_CONSTANTS_R__
|
|
|
|
|
|
|
|
/* so many versions */
|
2021-12-30 01:35:23 +00:00
|
|
|
#define SSHEVEN_VERSION "0.8.9"
|
|
|
|
#define SSHEVEN_LONG_VERSION "0.8.9 prerelease, by cy384"
|
|
|
|
#define SSHEVEN_DESCRIPTION "ssheven 0.8.9 by cy384"
|
2020-07-20 23:14:57 +01:00
|
|
|
#define SSHEVEN_VERSION_MAJOR 0x00
|
2021-12-30 01:35:23 +00:00
|
|
|
#define SSHEVEN_VERSION_MINOR 0x89
|
2020-07-20 23:14:57 +01:00
|
|
|
#define SSHEVEN_VERSION_PRERELEASE 0x01
|
|
|
|
|
|
|
|
/* options: development, alpha, beta, release */
|
|
|
|
#define SSHEVEN_RELEASE_TYPE development
|
|
|
|
#define SSHEVEN_RELEASE_REGION verUS
|
|
|
|
|
|
|
|
/* requested number of bytes for RAM, used in SIZE resource */
|
2021-04-03 01:49:33 +01:00
|
|
|
#define SSHEVEN_MINIMUM_PARTITION 2*1024*1024
|
2020-07-24 00:46:29 +01:00
|
|
|
#define SSHEVEN_REQUIRED_PARTITION SSHEVEN_MINIMUM_PARTITION
|
2020-07-20 23:14:57 +01:00
|
|
|
|
2020-07-24 00:46:29 +01:00
|
|
|
/* size in bytes for recv and send thread buffers */
|
2021-06-02 02:33:41 +01:00
|
|
|
/* making this too large is bad for responsiveness on 68k machines */
|
|
|
|
#define SSHEVEN_BUFFER_SIZE 4*1024
|
2020-07-20 23:14:57 +01:00
|
|
|
|
2020-10-04 18:41:36 +01:00
|
|
|
/* default terminal string */
|
|
|
|
#define SSHEVEN_DEFAULT_TERM_STRING "xterm-16color"
|
2020-07-20 23:14:57 +01:00
|
|
|
|
2020-09-20 04:48:41 +01:00
|
|
|
/* name for the preferences file (pascal string) */
|
|
|
|
#define PREFERENCES_FILENAME "\pssheven Preferences"
|
|
|
|
|
2020-09-20 03:34:07 +01:00
|
|
|
/* application icon set */
|
|
|
|
#define SSHEVEN_APPLICATION_ICON 128
|
|
|
|
|
|
|
|
/* preferences/other files icon set */
|
2020-10-04 18:44:51 +01:00
|
|
|
#define SSHEVEN_FILE_ICON 129
|
2020-09-20 03:34:07 +01:00
|
|
|
|
2020-07-24 00:51:33 +01:00
|
|
|
/* dialog for getting connection info */
|
2020-07-24 00:46:29 +01:00
|
|
|
#define DLOG_CONNECT 128
|
|
|
|
#define DITL_CONNECT 128
|
|
|
|
|
2020-07-25 23:57:03 +01:00
|
|
|
/* alert for failure to find OT */
|
|
|
|
#define ALRT_OT 129
|
|
|
|
#define DITL_OT 129
|
|
|
|
|
2020-07-24 00:51:33 +01:00
|
|
|
/* alert for failure to find thread manager */
|
2020-07-25 23:57:03 +01:00
|
|
|
#define ALRT_TM 130
|
|
|
|
#define DITL_TM 130
|
|
|
|
|
|
|
|
/* alert for slow CPU detected */
|
|
|
|
#define ALRT_CPU_SLOW 131
|
|
|
|
#define DITL_CPU_SLOW 131
|
|
|
|
|
|
|
|
/* alert for pre-68020 detected */
|
|
|
|
#define ALRT_CPU_BAD 132
|
|
|
|
#define DITL_CPU_BAD 132
|
2020-07-24 00:51:33 +01:00
|
|
|
|
2020-08-06 01:59:49 +01:00
|
|
|
/* about info window */
|
|
|
|
#define DLOG_ABOUT 133
|
|
|
|
#define DITL_ABOUT 133
|
|
|
|
#define PICT_ABOUT 133
|
|
|
|
|
2020-09-06 01:04:55 +01:00
|
|
|
/* password entry window */
|
|
|
|
#define DLOG_PASSWORD 134
|
|
|
|
#define DITL_PASSWORD 134
|
|
|
|
|
2020-09-13 17:21:17 +01:00
|
|
|
/* alert for password authentication failure */
|
|
|
|
#define ALRT_PW_FAIL 135
|
|
|
|
#define DITL_PW_FAIL 135
|
|
|
|
|
2020-09-16 02:17:02 +01:00
|
|
|
/* alert for requesting public key */
|
|
|
|
#define ALRT_PUBKEY 136
|
|
|
|
#define DITL_PUBKEY 136
|
|
|
|
|
|
|
|
/* alert for requesting private key */
|
|
|
|
#define ALRT_PRIVKEY 137
|
|
|
|
#define DITL_PRIVKEY 137
|
|
|
|
|
|
|
|
/* alert for requesting key decryption password */
|
|
|
|
#define DLOG_KEY_PASSWORD 138
|
|
|
|
#define DITL_KEY_PASSWORD 138
|
|
|
|
|
2020-09-16 02:33:00 +01:00
|
|
|
/* alert for key file read failure */
|
|
|
|
#define ALRT_FILE_FAIL 139
|
|
|
|
#define DITL_FILE_FAIL 139
|
|
|
|
|
2020-10-04 17:19:49 +01:00
|
|
|
/* dialog for preferences */
|
|
|
|
#define DLOG_PREFERENCES 140
|
|
|
|
#define DITL_PREFERENCES 140
|
|
|
|
|
2020-10-11 00:45:59 +01:00
|
|
|
/* dialog for known host check */
|
|
|
|
#define DLOG_NEW_HOST 141
|
|
|
|
#define DITL_NEW_HOST 141
|
|
|
|
|
2020-10-04 17:19:49 +01:00
|
|
|
/* controls for preferences dialog */
|
|
|
|
#define CNTL_PREF_FG_COLOR 128
|
|
|
|
#define CNTL_PREF_BG_COLOR 129
|
|
|
|
#define CNTL_PREF_TERM_TYPE 130
|
2021-06-05 16:10:06 +01:00
|
|
|
#define CNTL_PREF_FONT_SIZE 131
|
2020-10-11 00:46:50 +01:00
|
|
|
|
2020-08-06 01:59:49 +01:00
|
|
|
/* menus */
|
2020-10-04 18:44:51 +01:00
|
|
|
#define MBAR_SSHEVEN 128
|
2020-10-04 17:19:49 +01:00
|
|
|
|
|
|
|
#define MENU_APPLE 128
|
|
|
|
#define MENU_FILE 129
|
|
|
|
#define MENU_EDIT 130
|
|
|
|
#define MENU_COLOR 131
|
|
|
|
#define MENU_TERM_TYPE 132
|
2021-06-05 16:10:06 +01:00
|
|
|
#define MENU_FONT_SIZE 133
|
2020-07-24 00:46:29 +01:00
|
|
|
|
2020-07-20 23:14:57 +01:00
|
|
|
#endif
|