OpenSSL: update to 1.0.1m
[tomato.git] / release / src / router / openssl / ms / applink.c
blob2831b39e9a7d27e4811d2ce22cf9a06d62bd92e1
1 #define APPLINK_STDIN 1
2 #define APPLINK_STDOUT 2
3 #define APPLINK_STDERR 3
4 #define APPLINK_FPRINTF 4
5 #define APPLINK_FGETS 5
6 #define APPLINK_FREAD 6
7 #define APPLINK_FWRITE 7
8 #define APPLINK_FSETMOD 8
9 #define APPLINK_FEOF 9
10 #define APPLINK_FCLOSE 10 /* should not be used */
12 #define APPLINK_FOPEN 11 /* solely for completeness */
13 #define APPLINK_FSEEK 12
14 #define APPLINK_FTELL 13
15 #define APPLINK_FFLUSH 14
16 #define APPLINK_FERROR 15
17 #define APPLINK_CLEARERR 16
18 #define APPLINK_FILENO 17 /* to be used with below */
20 #define APPLINK_OPEN 18 /* formally can't be used, as flags can vary */
21 #define APPLINK_READ 19
22 #define APPLINK_WRITE 20
23 #define APPLINK_LSEEK 21
24 #define APPLINK_CLOSE 22
25 #define APPLINK_MAX 22 /* always same as last macro */
27 #ifndef APPMACROS_ONLY
28 # include <stdio.h>
29 # include <io.h>
30 # include <fcntl.h>
32 static void *app_stdin(void)
34 return stdin;
37 static void *app_stdout(void)
39 return stdout;
42 static void *app_stderr(void)
44 return stderr;
47 static int app_feof(FILE *fp)
49 return feof(fp);
52 static int app_ferror(FILE *fp)
54 return ferror(fp);
57 static void app_clearerr(FILE *fp)
59 clearerr(fp);
62 static int app_fileno(FILE *fp)
64 return _fileno(fp);
67 static int app_fsetmod(FILE *fp, char mod)
69 return _setmode(_fileno(fp), mod == 'b' ? _O_BINARY : _O_TEXT);
72 #ifdef __cplusplus
73 extern "C" {
74 #endif
76 __declspec(dllexport)
77 void **
78 # if defined(__BORLANDC__)
80 * __stdcall appears to be the only way to get the name
81 * decoration right with Borland C. Otherwise it works
82 * purely incidentally, as we pass no parameters.
84 __stdcall
85 # else
86 __cdecl
87 # endif
88 OPENSSL_Applink(void)
90 static int once = 1;
91 static void *OPENSSL_ApplinkTable[APPLINK_MAX + 1] =
92 { (void *)APPLINK_MAX };
94 if (once) {
95 OPENSSL_ApplinkTable[APPLINK_STDIN] = app_stdin;
96 OPENSSL_ApplinkTable[APPLINK_STDOUT] = app_stdout;
97 OPENSSL_ApplinkTable[APPLINK_STDERR] = app_stderr;
98 OPENSSL_ApplinkTable[APPLINK_FPRINTF] = fprintf;
99 OPENSSL_ApplinkTable[APPLINK_FGETS] = fgets;
100 OPENSSL_ApplinkTable[APPLINK_FREAD] = fread;
101 OPENSSL_ApplinkTable[APPLINK_FWRITE] = fwrite;
102 OPENSSL_ApplinkTable[APPLINK_FSETMOD] = app_fsetmod;
103 OPENSSL_ApplinkTable[APPLINK_FEOF] = app_feof;
104 OPENSSL_ApplinkTable[APPLINK_FCLOSE] = fclose;
106 OPENSSL_ApplinkTable[APPLINK_FOPEN] = fopen;
107 OPENSSL_ApplinkTable[APPLINK_FSEEK] = fseek;
108 OPENSSL_ApplinkTable[APPLINK_FTELL] = ftell;
109 OPENSSL_ApplinkTable[APPLINK_FFLUSH] = fflush;
110 OPENSSL_ApplinkTable[APPLINK_FERROR] = app_ferror;
111 OPENSSL_ApplinkTable[APPLINK_CLEARERR] = app_clearerr;
112 OPENSSL_ApplinkTable[APPLINK_FILENO] = app_fileno;
114 OPENSSL_ApplinkTable[APPLINK_OPEN] = _open;
115 OPENSSL_ApplinkTable[APPLINK_READ] = _read;
116 OPENSSL_ApplinkTable[APPLINK_WRITE] = _write;
117 OPENSSL_ApplinkTable[APPLINK_LSEEK] = _lseek;
118 OPENSSL_ApplinkTable[APPLINK_CLOSE] = _close;
120 once = 0;
123 return OPENSSL_ApplinkTable;
126 #ifdef __cplusplus
128 #endif
129 #endif