forked from postgresql-interfaces/psqlodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadlib.h
43 lines (38 loc) · 995 Bytes
/
loadlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* 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 UnloadDelayLoadedDLLs(BOOL); */
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__ */