VSI submission: redirect terminal input through socket
[openssl.git] / apps / vms_term_sock.h
1 #ifndef TERM_SOCK_H
2 #define TERM_SOCK_H
3
4 /*
5 ** Terminal Socket Function Codes
6 */
7 #define TERM_SOCK_CREATE        1
8 #define TERM_SOCK_DELETE        2
9
10 /*
11 ** Terminal Socket Status Codes
12 */
13 #define TERM_SOCK_FAILURE       0
14 #define TERM_SOCK_SUCCESS       1
15
16 /*
17 ** Terminal Socket Prototype
18 */
19 int TerminalSocket (int FunctionCode, int *ReturnSocket);
20
21 #endif