x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
module_init.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\python\module_init.hpp
Girar
Efecto
Propiedad
Historial
// Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef MODULE_INIT_DWA20020722_HPP # define MODULE_INIT_DWA20020722_HPP # include
# ifndef BOOST_PYTHON_MODULE_INIT namespace boost { namespace python { namespace detail { BOOST_PYTHON_DECL void init_module(char const* name, void(*)()); }}} # if (defined(_WIN32) || defined(__CYGWIN__)) && !defined(BOOST_PYTHON_STATIC_MODULE) # define BOOST_PYTHON_MODULE_INIT(name) \ void init_module_##name(); \ extern "C" __declspec(dllexport) void init##name() \ { \ boost::python::detail::init_module( \ #name,&init_module_##name); \ } \ void init_module_##name() # elif BOOST_PYTHON_USE_GCC_SYMBOL_VISIBILITY # define BOOST_PYTHON_MODULE_INIT(name) \ void init_module_##name(); \ extern "C" __attribute__ ((visibility("default"))) void init##name() \ { \ boost::python::detail::init_module(#name, &init_module_##name); \ } \ void init_module_##name() # else # define BOOST_PYTHON_MODULE_INIT(name) \ void init_module_##name(); \ extern "C" void init##name() \ { \ boost::python::detail::init_module(#name, &init_module_##name); \ } \ void init_module_##name() # endif # endif #endif // MODULE_INIT_DWA20020722_HPP
module_init.hpp
Dirección de la página
Dirección del archivo
Anterior
41/85
Siguiente
Descargar
( 2 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.