Lines Matching refs:__declspec

53 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
54 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
55 #define PR_IMPORT(__type) __declspec(dllimport) __type
56 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
58 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
59 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
60 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
61 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
69 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
70 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
71 #define PR_IMPORT(__type) extern __declspec(dllexport) __type
72 #define PR_IMPORT_DATA(__type) extern __declspec(dllexport) __type
74 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
75 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
76 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
77 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
118 #define PR_EXPORT(__type) extern __declspec(export) __type
119 #define PR_EXPORT_DATA(__type) extern __declspec(export) __type
120 #define PR_IMPORT(__type) extern __declspec(export) __type
121 #define PR_IMPORT_DATA(__type) extern __declspec(export) __type
123 #define PR_EXTERN(__type) extern __declspec(export) __type
124 #define PR_IMPLEMENT(__type) __declspec(export) __type
125 #define PR_EXTERN_DATA(__type) extern __declspec(export) __type
126 #define PR_IMPLEMENT_DATA(__type) __declspec(export) __type
132 #elif defined(XP_OS2) && defined(__declspec)
134 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
135 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
136 #define PR_IMPORT(__type) __declspec(dllimport) __type
137 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
139 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
140 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
141 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
142 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type