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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#ifndef _DYNALOAD_H_
#define _DYNALOAD_H_
#include "log.h"
#if defined(OS_hpux)
#include <dl.h>
typedef shl_t minthandle_t;
#elif defined(WIN32)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
typedef HMODULE minthandle_t;
#undef WIN32_LEAN_AND_MEAN
#elif defined(OS_darwin)
#define DL_LOADONCEONLY
#define DLSYMUN
#undef environ
#undef bool
#import <mach-o/dyld.h>
typedef void *minthandle_t;
#else
#include <dlfcn.h>
typedef void *minthandle_t;
#endif
#include "EXTERN.h"
#include "perl.h"
#include "ppport.h"
#include "ext.h"
typedef struct {
minthandle_t handle;
char *filename;
func_ptr *function_list;
} DSO_handle;
typedef struct {
HV* hv;
char *key;
void *store;
} UTIL_args;
#if 0
int getobj(void *hv_t,char *key,char *type,void **store);
int getint(void *hv_t,char *key,int *store);
int getdouble(void *hv_t,char *key,double *store);
int getvoid(void *hv_t,char *key,void **store);
#endif
void *DSO_open(char* file,char** evalstring);
int DSO_close(void *);
void DSO_call(DSO_handle *handle,int func_index,HV* hv);
#ifdef __EMX__ /* OS/2 */
# ifndef RTLD_LAZY
# define RTLD_LAZY 0
# endif /* RTLD_LAZY */
int dlclose(minthandle_t);
#endif /* __EMX__ */
#ifdef DLSYMUN
#define I_EVALSTR "_evalstr"
#define I_SYMBOL_TABLE "_symbol_table"
#define I_UTIL_TABLE "_util_table"
#define I_FUNCTION_LIST "_function_list"
#define I_INSTALL_TABLES "_install_tables"
#else
#define I_EVALSTR "evalstr"
#define I_SYMBOL_TABLE "symbol_table"
#define I_UTIL_TABLE "util_table"
#define I_FUNCTION_LIST "function_list"
#define I_INSTALL_TABLES "install_tables"
#endif
#endif /* _DYNALOAD_H_ */
|