로딩중...
검색중...
일치하는것 없음
_nout.hpp
이 파일의 문서화 페이지로 가기
1
4
#pragma once
5
6
#ifdef WIN32
7
# undef _nout
8
# define _nhidden
9
# ifdef __indep = 1
// I'm currently building indep module
10
# define _nout __declspec(dllexport)
11
# else
12
# define _nout __declspec(dllimport)
13
# endif
14
#else
15
# undef _nout
16
# define _nout __attribute__((visibility("default")))
17
# define _nhidden __attribute__((visibility("hidden")))
18
#endif