Home | History | Annotate | Download | only in nspr

Lines Matching refs:__type

92 #define PR_EXPORT(__type) extern __type
93 #define PR_EXPORT_DATA(__type) extern __type
94 #define PR_IMPORT(__type) extern __type
95 #define PR_IMPORT_DATA(__type) extern __type
97 #define PR_EXTERN(__type) extern __type
98 #define PR_IMPLEMENT(__type) __type
99 #define PR_EXTERN_DATA(__type) extern __type
100 #define PR_IMPLEMENT_DATA(__type) __type
108 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
109 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
110 #define PR_IMPORT(__type) __declspec(dllimport) __type
111 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
113 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
114 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
115 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
116 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
124 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
125 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
126 #define PR_IMPORT(__type) extern __declspec(dllexport) __type
127 #define PR_IMPORT_DATA(__type) extern __declspec(dllexport) __type
129 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
130 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
131 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
132 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
140 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
141 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
142 #define PR_IMPORT(__type) extern __declspec(dllimport) __type
143 #define PR_IMPORT_DATA(__type) extern __declspec(dllimport) __type
145 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
146 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
147 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
148 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
156 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
157 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
159 #define PR_IMPORT(__type) extern __declspec(dllexport) __type
160 #define PR_IMPORT_DATA(__type) extern __declspec(dllexport) __type
162 #define PR_IMPORT(__type) extern __declspec(dllimport) __type
163 #define PR_IMPORT_DATA(__type) extern __declspec(dllimport) __type
166 #define PR_EXTERN(__type) extern __type
167 #define PR_IMPLEMENT(__type) __type
168 #define PR_EXTERN_DATA(__type) extern __type
169 #define PR_IMPLEMENT_DATA(__type) __type
185 #define PR_EXPORT(__type) extern PR_VISIBILITY_DEFAULT __type
186 #define PR_EXPORT_DATA(__type) extern PR_VISIBILITY_DEFAULT __type
187 #define PR_IMPORT(__type) extern PR_VISIBILITY_DEFAULT __type
188 #define PR_IMPORT_DATA(__type) extern PR_VISIBILITY_DEFAULT __type
190 #define PR_EXTERN(__type) extern PR_VISIBILITY_DEFAULT __type
191 #define PR_IMPLEMENT(__type) PR_VISIBILITY_DEFAULT __type
192 #define PR_EXTERN_DATA(__type) extern PR_VISIBILITY_DEFAULT __type
193 #define PR_IMPLEMENT_DATA(__type) PR_VISIBILITY_DEFAULT __type
201 #define NSPR_API(__type) PR_EXPORT(__type)
202 #define NSPR_DATA_API(__type) PR_EXPORT_DATA(__type)
204 #define NSPR_API(__type) PR_IMPORT(__type)
205 #define NSPR_DATA_API(__type) PR_IMPORT_DATA(__type)