/*
* Copyright 2004-2021 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#define APPLINK_STDIN 1
#define APPLINK_STDOUT 2
#define APPLINK_STDERR 3
#define APPLINK_FPRINTF 4
#define APPLINK_FGETS 5
#define APPLINK_FREAD 6
#define APPLINK_FWRITE 7
#define APPLINK_FSETMOD 8
#define APPLINK_FEOF 9
#define APPLINK_FCLOSE 10 /* should not be used */
#define APPLINK_FOPEN 11 /* solely for completeness */
#define APPLINK_FSEEK 12
#define APPLINK_FTELL 13
#define APPLINK_FFLUSH 14
#define APPLINK_FERROR 15
#define APPLINK_CLEARERR 16
#define APPLINK_FILENO 17 /* to be used with below */
#define APPLINK_OPEN 18 /* formally can't be used, as flags can vary */
#define APPLINK_READ 19
#define APPLINK_WRITE 20
#define APPLINK_LSEEK 21
#define APPLINK_CLOSE 22
#define APPLINK_MAX 22 /* always same as last macro */
#ifndef APPMACROS_ONLY
# include <stdio.h>
# include <io.h>
# include <fcntl.h>
# ifdef __BORLANDC__
/* _lseek in <io.h> is a function-like macro so we can't take its address */
# undef _lseek
# define _lseek lseek
# endif
static void *app_stdin(void)
{
return stdin;
}
static void *app_stdout(void)
{
return stdout;
}
static void *app_stderr(void)
{
return stderr;
}
static int app_feof(FILE *fp)
{
return feof(fp);
}
static int app_ferror(FILE *fp)
{
return ferror(fp);
}
static void app_clearerr(FILE *fp)
{
clearerr(fp);
}
static int app_fileno(FILE *fp)
{
return _fileno(fp);
}
static int app_fsetmod(FILE *fp, char mod)
{
return _setmode(_fileno(fp), mod == 'b' ? _O_BINARY : _O_TEXT);
}
#ifdef __cplusplus
extern "C" {
#endif
__declspec(dllexport)
void **
# if defined(__BORLANDC__)
/*
* __stdcall appears to be the only way to get the name
* decoration right with Borland C. Otherwise it works
* purely incidentally, as we pass no parameters.
*/
__stdcall
# else
__cdecl
# endif
OPENSSL_Applink(void)
{
static int once = 1;
static void *OPENSSL_ApplinkTable[APPLINK_MAX + 1] =
{ (void *)APPLINK_MAX };
if (once) {
OPENSSL_ApplinkTable[APPLINK_STDIN] = app_stdin;
OPENSSL_ApplinkTable[APPLINK_STDOUT] = app_stdout;
OPENSSL_ApplinkTable[APPLINK_STDERR] = app_stderr;
OPENSSL_ApplinkTable[APPLINK_FPRINTF] = fprintf;
OPENSSL_ApplinkTable[APPLINK_FGETS] = fgets;
OPENSSL_ApplinkTable[APPLINK_FREAD] = fread;
OPENSSL_ApplinkTable[APPLINK_FWRITE] = fwrite;
OPENSSL_ApplinkTable[APPLINK_FSETMOD] = app_fsetmod;
OPENSSL_ApplinkTable[APPLINK_FEOF] = app_feof;
OPENSSL_ApplinkTable[APPLINK_FCLOSE] = fclose;
OPENSSL_ApplinkTable[APPLINK_FOPEN] = fopen;
OPENSSL_ApplinkTable[APPLINK_FSEEK] = fseek;
OPENSSL_ApplinkTable[APPLINK_FTELL] = ftell;
OPENSSL_ApplinkTable[APPLINK_FFLUSH] = fflush;
OPENSSL_ApplinkTable[APPLINK_FERROR] = app_ferror;
OPENSSL_ApplinkTable[APPLINK_CLEARERR] = app_clearerr;
OPENSSL_ApplinkTable[APPLINK_FILENO] = app_fileno;
OPENSSL_ApplinkTable[APPLINK_OPEN] = _open;
OPENSSL_ApplinkTable[APPLINK_READ] = _read;
OPENSSL_ApplinkTable[APPLINK_WRITE] = _write;
OPENSSL_ApplinkTable[APPLINK_LSEEK] = _lseek;
OPENSSL_ApplinkTable[APPLINK_CLOSE] = _close;
once = 0;
}
return OPENSSL_ApplinkTable;
}
#ifdef __cplusplus
}
#endif
#endif
没有合适的资源?快使用搜索试试~ 我知道了~
MySQL8.0数据库点击install快速安装,uninstall快速卸载
共309个文件
sdi:112个
dll:49个
ibd:36个
需积分: 1 0 下载量 170 浏览量
2024-10-07
23:15:57
上传
评论
收藏 81.73MB ZIP 举报
温馨提示
MySQL8.0数据库点击install快速安装,uninstall快速卸载
资源推荐
资源详情
资源评论
收起资源包目录
MySQL8.0数据库点击install快速安装,uninstall快速卸载 (309个子文件)
#ib_redo10_tmp 3.13MB
#ib_redo11_tmp 3.13MB
#ib_redo12_tmp 3.13MB
#ib_redo13_tmp 3.13MB
#ib_redo14_tmp 3.13MB
#ib_redo15_tmp 3.13MB
#ib_redo16_tmp 3.13MB
#ib_redo17_tmp 3.13MB
#ib_redo18_tmp 3.13MB
#ib_redo19_tmp 3.13MB
#ib_redo20_tmp 3.13MB
#ib_redo21_tmp 3.13MB
#ib_redo22_tmp 3.13MB
#ib_redo23_tmp 3.13MB
#ib_redo24_tmp 3.13MB
#ib_redo25_tmp 3.13MB
#ib_redo26_tmp 3.13MB
#ib_redo27_tmp 3.13MB
#ib_redo28_tmp 3.13MB
#ib_redo29_tmp 3.13MB
#ib_redo30_tmp 3.13MB
#ib_redo31_tmp 3.13MB
#ib_redo32_tmp 3.13MB
#ib_redo33_tmp 3.13MB
#ib_redo34_tmp 3.13MB
#ib_redo35_tmp 3.13MB
#ib_redo36_tmp 3.13MB
#ib_redo37_tmp 3.13MB
#ib_redo38_tmp 3.13MB
#ib_redo39_tmp 3.13MB
#ib_redo40_tmp 3.13MB
#ib_redo9 3.13MB
install.bat 215B
uninstall.bat 213B
startConsole.bat 56B
applink.c 4KB
auto.cnf 56B
slow_log.CSM 35B
general_log.CSM 35B
general_log.CSV 0B
slow_log.CSV 0B
#ib_16384_1.dblwr 8.19MB
#ib_16384_0.dblwr 192KB
authentication_oci_client.dll 6.02MB
authentication_kerberos_client.dll 5.98MB
libcrypto-3-x64.dll 4.92MB
libprotobuf.dll 2.72MB
group_replication.dll 1.86MB
libmecab.dll 1.76MB
component_keyring_file.dll 1.18MB
krb5_64.dll 1.17MB
libssl-3-x64.dll 770KB
libprotobuf-lite.dll 595KB
jemalloc.dll 494KB
gssapi64.dll 392KB
fido2.dll 246KB
mysql_clone.dll 149KB
krbcc64.dll 120KB
libsasl.dll 118KB
keyring_file.dll 102KB
semisync_master.dll 88KB
semisync_source.dll 87KB
ddl_rewriter.dll 80KB
component_validate_password.dll 77KB
rewriter.dll 69KB
k5sprt64.dll 68KB
version_token.dll 60KB
xpprof64.dll 57KB
validate_password.dll 57KB
saslSCRAM.dll 56KB
component_reference_cache.dll 55KB
connection_control.dll 55KB
authentication_ldap_sasl_client.dll 53KB
component_mysqlbackup.dll 53KB
ha_mock.dll 50KB
component_log_sink_json.dll 46KB
semisync_slave.dll 45KB
semisync_replica.dll 45KB
component_log_filter_dragnet.dll 42KB
authentication_fido_client.dll 41KB
libpluginmecab.dll 40KB
ha_example.dll 40KB
keyring_udf.dll 36KB
adt_null.dll 36KB
component_audit_api_message_emit.dll 34KB
component_log_sink_syseventlog.dll 28KB
comerr64.dll 26KB
component_query_attributes.dll 24KB
mypluglib.dll 24KB
locking_service.dll 24KB
rewrite_example.dll 24KB
mysql_no_login.dll 22KB
xiaoxin.err 1.26MB
DESKTOP-PS9LG15.err 96KB
mysqld.exe 51.67MB
mysqlpump.exe 7.17MB
mysqlbinlog.exe 7.05MB
perror.exe 6.85MB
mysql.exe 6.8MB
mysql_upgrade.exe 6.77MB
共 309 条
- 1
- 2
- 3
- 4
资源评论
吼吼qqqq
- 粉丝: 49
- 资源: 5
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功