blob: 4d5e2889bcc9e8a4ada2e28158e99c85d3d2ed03 (
plain)
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
|
/* File: xalibname.h
*
* Description: See "xalibname.c"
*
* Comments: See "readme.txt" for copyright and license information.
*
*/
#ifndef __XALIBNAME_H__
#define __XALIBNAME_H__
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
#ifdef _HANDLE_ENLIST_IN_DTC_
BOOL IsWow64(void);
const char *GetXaLibName(void);
const char *GetXaLibPath(void);
#endif /* _HANDLE_ENLIST_IN_DTC_ */
#endif /* WIN32 */
#ifdef __cplusplus
}
#endif
#endif /* __XALIBNAME_H__ */
|