32#if !defined LT__PRIVATE_H
33#define LT__PRIVATE_H 1
35#if defined LT_CONFIG_H
47#if defined HAVE_UNISTD_H
53#include "lt__dirent.h"
60#if defined WITH_DMALLOC
67# if defined __WINDOWS__ || defined __CYGWIN__
68# if defined DLL_EXPORT
69# define LT_GLOBAL_DATA __declspec(dllexport)
72# ifndef LT_GLOBAL_DATA
73# define LT_GLOBAL_DATA
78# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
79# define __attribute__(x)
84# define LT__UNUSED __attribute__ ((__unused__))
94LT_SCOPE
void lt__alloc_die_callback (
void);
98#define STRNEQ(s1, s2) (strcmp((s1), (s2)) != 0)
99#define STREQ(s1, s2) (strcmp((s1), (s2)) == 0)
107 lt_dlinterface_id key;
124 unsigned int try_ext:1;
125 unsigned int is_resident:1;
126 unsigned int is_symglobal:1;
128 unsigned int is_symlocal:1;
130 unsigned int try_preload_only:1;
138#define LT__STRERROR(name) lt__error_string(LT_CONC(LT_ERROR_,name))
140#define LT__GETERROR(lvalue) (lvalue) = lt__get_last_error()
141#define LT__SETERRORSTR(errormsg) lt__set_last_error(errormsg)
142#define LT__SETERROR(errorcode) LT__SETERRORSTR(LT__STRERROR(errorcode))
144LT_SCOPE
const char *lt__error_string (
int errorcode);
145LT_SCOPE
const char *lt__get_last_error (
void);
146LT_SCOPE
const char *lt__set_last_error (
const char *errormsg);
Definition lt__private.h:123
Definition lt__private.h:111
Definition lt_dlloader.h:62
Definition lt__private.h:106