Lines Matching refs:__declspec

86 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
87 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
88 #define PR_IMPORT(__type) __declspec(dllimport) __type
89 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
91 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
92 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
93 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
94 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
102 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
103 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
104 #define PR_IMPORT(__type) extern __declspec(dllexport) __type
105 #define PR_IMPORT_DATA(__type) extern __declspec(dllexport) __type
107 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
108 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
109 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
110 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
151 #define PR_EXPORT(__type) extern __declspec(export) __type
152 #define PR_EXPORT_DATA(__type) extern __declspec(export) __type
153 #define PR_IMPORT(__type) extern __declspec(export) __type
154 #define PR_IMPORT_DATA(__type) extern __declspec(export) __type
156 #define PR_EXTERN(__type) extern __declspec(export) __type
157 #define PR_IMPLEMENT(__type) __declspec(export) __type
158 #define PR_EXTERN_DATA(__type) extern __declspec(export) __type
159 #define PR_IMPLEMENT_DATA(__type) __declspec(export) __type
165 #elif defined(XP_OS2) && defined(__declspec)
167 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
168 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
169 #define PR_IMPORT(__type) __declspec(dllimport) __type
170 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
172 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
173 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
174 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
175 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type