00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef AXUTIL_CLASS_LOADER_H
00019 #define AXUTIL_CLASS_LOADER_H
00020
00026 #include <axutil_utils_defines.h>
00027 #include <axutil_qname.h>
00028 #include <axutil_error.h>
00029 #include <axutil_utils.h>
00030 #include <axutil_dll_desc.h>
00031 #include <axutil_param.h>
00032
00033 #ifdef __cplusplus
00034 extern "C"
00035 {
00036 #endif
00037
00043 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00044 axutil_class_loader_init(const axutil_env_t *env);
00045
00046 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00047 axutil_class_loader_delete_dll (const axutil_env_t *env,
00048 axutil_dll_desc_t *dll_desc);
00049
00050 AXIS2_EXTERN void * AXIS2_CALL
00051 axutil_class_loader_create_dll (const axutil_env_t *env,
00052 axutil_param_t *impl_info_param);
00053
00054
00056 #ifdef __cplusplus
00057 }
00058 #endif
00059
00060 #endif