_nout.hpp
Go to the documentation of this file.
1
3
#pragma once
4
5
#ifdef WIN32
6
# undef _nout
7
# ifdef __indep = 1
// I'm currently building indep module
8
# define _nout __declspec(dllexport)
9
# else
10
# define _nout __declspec(dllimport)
11
# endif
12
#else
13
# undef _nout
14
# define _nout
15
#endif