File indexing completed on 2025-01-18 09:50:37
0001
0002
0003
0004
0005 #ifndef AIX_INIT_MODULE_DWA2002529_HPP
0006 # define AIX_INIT_MODULE_DWA2002529_HPP
0007 # ifdef _AIX
0008 # include <boost/python/detail/prefix.hpp>
0009 # include <cstdio>
0010 # ifdef __KCC
0011 # include <iostream> // this works around a problem in KCC 4.0f
0012 # endif
0013
0014 namespace boost { namespace python { namespace detail {
0015
0016 extern "C"
0017 {
0018 typedef PyObject* (*so_load_function)(char*,char*,FILE*);
0019 }
0020
0021 void aix_init_module(so_load_function, char const* name, void (*init_module)());
0022
0023 }}}
0024 # endif
0025
0026 #endif