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 */
|
2020-09-16 02:40:10 +01:00
|
|
|
#define SSHEVEN_VERSION "0.6.0"
|
|
|
|
#define SSHEVEN_LONG_VERSION "0.6.0 prerelease, by cy384"
|
|
|
|
#define SSHEVEN_DESCRIPTION "ssheven 0.6.0 by cy384"
|
2020-07-20 23:14:57 +01:00
|
|
|
#define SSHEVEN_VERSION_MAJOR 0x00
|
2020-09-16 02:40:10 +01:00
|
|
|
#define SSHEVEN_VERSION_MINOR 0x60
|
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 */
|
2020-07-24 04:33:21 +01:00
|
|
|
#define SSHEVEN_MINIMUM_PARTITION 2048*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 */
|
2020-07-20 23:14:57 +01:00
|
|
|
#define SSHEVEN_BUFFER_SIZE 4096
|
|
|
|
|
2020-09-20 02:13:09 +01:00
|
|
|
/*
|
|
|
|
* terminal type to send over ssh, determines features etc. some good options:
|
2020-09-19 21:41:47 +01:00
|
|
|
* "vanilla" supports basically nothing
|
|
|
|
* "vt100" just the basics
|
|
|
|
* "xterm" everything
|
2020-09-20 02:13:09 +01:00
|
|
|
* "xterm-mono" everything except color
|
|
|
|
* "xterm-16color" classic 16 ANSI colors only
|
|
|
|
*/
|
|
|
|
#define SSHEVEN_TERMINAL_TYPE "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 */
|
|
|
|
#define SSHEVEN_FILE_ICON 129
|
|
|
|
|
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-08-06 01:59:49 +01:00
|
|
|
/* menus */
|
2020-08-20 19:53:01 +01:00
|
|
|
#define MBAR_SSHEVEN 128
|
2020-08-13 16:21:05 +01:00
|
|
|
#define MENU_APPLE 128
|
|
|
|
#define MENU_FILE 129
|
|
|
|
#define MENU_EDIT 130
|
2020-07-24 00:46:29 +01:00
|
|
|
|
2020-07-20 23:14:57 +01:00
|
|
|
#endif
|