Home | History | Annotate | Download | only in nspr

Lines Matching refs:__type

82 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
83 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
84 #define PR_IMPORT(__type) __declspec(dllimport) __type
85 #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type
87 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
88 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
89 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
90 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
98 #define PR_EXPORT(__type) extern __declspec(dllexport) __type
99 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type
100 #define PR_IMPORT(__type) extern __declspec(dllexport) __type
101 #define PR_IMPORT_DATA(__type) extern __declspec(dllexport) __type
103 #define PR_EXTERN(__type) extern __declspec(dllexport) __type
104 #define PR_IMPLEMENT(__type) __declspec(dllexport) __type
105 #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type
106 #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type
117 #define PR_EXPORT(__type) extern __type _cdecl _export _loadds
118 #define PR_IMPORT(__type) extern __type _cdecl _export _loadds
119 #define PR_EXPORT_DATA(__type) extern __type _export
120 #define PR_IMPORT_DATA(__type) extern __type _export
122 #define PR_EXTERN(__type) extern __type _cdecl _export _loadds
123 #define PR_IMPLEMENT(__type) __type _cdecl _export _loadds
124 #define PR_EXTERN_DATA(__type) extern __type _export
125 #define PR_IMPLEMENT_DATA(__type) __type _export
131 #define PR_EXPORT(__type) extern __type _cdecl _export
132 #define PR_IMPORT(__type) extern __type _cdecl _export
133 #define PR_EXPORT_DATA(__type) extern __type _export
134 #define PR_IMPORT_DATA(__type) extern __type _export
136 #define PR_EXTERN(__type) extern __type _cdecl _export
137 #define PR_IMPLEMENT(__type) __type _cdecl _export
138 #define PR_EXTERN_DATA(__type) extern __type _export
139 #define PR_IMPLEMENT_DATA(__type) __type _export
147 #define PR_EXPORT(__type) extern __declspec(export) __type
148 #define PR_EXPORT_DATA(__type) extern __declspec(export) __type
149 #define PR_IMPORT(__type) extern __declspec(export) __type
150 #define PR_IMPORT_DATA(__type) extern __declspec(export) __type
152 #define PR_EXTERN(__type) extern __declspec(export) __type
153 #define PR_IMPLEMENT(__type) __declspec(export) __type
154 #define PR_EXTERN_DATA(__type) extern __declspec(export) __type
155 #define PR_IMPLEMENT_DATA(__type) __declspec(export) __type
163 #define PR_EXPORT(__type) extern __type
164 #define PR_EXPORT_DATA(__type) extern __type
165 #define PR_IMPORT(__type) extern __type
166 #define PR_IMPORT_DATA(__type) extern __type
168 #define PR_EXTERN(__type) extern __type
169 #define PR_IMPLEMENT(__type) __type
170 #define PR_EXTERN_DATA(__type) extern __type
171 #define PR_IMPLEMENT_DATA(__type) __type
179 #define NSPR_API(__type) PR_EXPORT(__type)
180 #define NSPR_DATA_API(__type) PR_EXPORT_DATA(__type)
182 #define NSPR_API(__type) PR_IMPORT(__type)
183 #define NSPR_DATA_API(__type) PR_IMPORT_DATA(__type)