Lines Matching refs:__declspec

53 #  define VBOXCAPI_DECL(type) extern __declspec(dllexport) type
55 # define VBOXCAPI_DECL(type) __declspec(dllimport) type
115 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
116 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
117 #define PR_IMPORT(__type) __declspec(dllimport) __type
118 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
120 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
121 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
122 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
123 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
131 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
132 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
133 #define PR_IMPORT(__type) extern __declspec(dllexport) __type
134 #define PR_IMPORT_DATA(__type) extern __declspec(dllexport) __type
136 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
137 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
138 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
139 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
180 #define PR_EXPORT(__type) extern __declspec(export) __type
181 #define PR_EXPORT_DATA(__type) extern __declspec(export) __type
182 #define PR_IMPORT(__type) extern __declspec(export) __type
183 #define PR_IMPORT_DATA(__type) extern __declspec(export) __type
185 #define PR_EXTERN(__type) extern __declspec(export) __type
186 #define PR_IMPLEMENT(__type) __declspec(export) __type
187 #define PR_EXTERN_DATA(__type) extern __declspec(export) __type
188 #define PR_IMPLEMENT_DATA(__type) __declspec(export) __type
194 #elif defined(XP_OS2) && defined(__declspec)
196 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
197 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
198 #define PR_IMPORT(__type) __declspec(dllimport) __type
199 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
201 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
202 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
203 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
204 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type