Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:50:37

0001 // Copyright David Abrahams 2002.
0002 // Distributed under the Boost Software License, Version 1.0. (See
0003 // accompanying file LICENSE_1_0.txt or copy at
0004 // http://www.boost.org/LICENSE_1_0.txt)
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 }}} // namespace boost::python::detail
0024 # endif
0025 
0026 #endif // AIX_INIT_MODULE_DWA2002529_HPP