19 Star 39 Fork 46

openGauss / openGauss-connector-odbc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
loadlib.h 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* File: loadlib.h
*
* Description: See "loadlib.c"
*
* Comments: See "readme.txt" for copyright and license information.
*
*/
#ifndef __LOADLIB_H__
#define __LOADLIB_H__
#include "psqlodbc.h"
#ifdef HAVE_LIBLTDL
#include <ltdl.h>
#else
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif /* HAVE_DLFCN_H */
#endif /* HAVE_LIBLTDL */
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _HANDLE_ENLIST_IN_DTC_
RETCODE CALL_EnlistInDtc(ConnectionClass *conn, void * pTra, int method);
RETCODE CALL_DtcOnDisconnect(ConnectionClass *);
RETCODE CALL_IsolateDtcConn(ConnectionClass *, BOOL);
void *CALL_GetTransactionObject(HRESULT *);
void CALL_ReleaseTransactionObject(void *);
#endif /* _HANDLE_ENLIST_IN_DTC_ */
void CleanupDelayLoadedDLLs(void);
#ifdef WIN32
HMODULE MODULE_load_from_psqlodbc_path(const char *module_name);
void AlreadyLoadedPsqlodbc(void);
#endif /* WIN32 */
#ifdef __cplusplus
}
#endif
#endif /* __LOADLIB_H__ */
C
1
https://gitee.com/opengauss/openGauss-connector-odbc.git
git@gitee.com:opengauss/openGauss-connector-odbc.git
opengauss
openGauss-connector-odbc
openGauss-connector-odbc
master

搜索帮助