<rdar://problem/
4682225> conflicting typedefs in Netscape plug-in headers
* Plugins/npfunctions.h: fix the return type for NPN_IntFromIdentifierProcPtr to be int32_t
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16235
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-09-05 Timothy Hatcher <timothy@apple.com>
+
+ Reviewed by Tim O.
+
+ <rdar://problem/4682225> conflicting typedefs in Netscape plug-in headers
+
+ * Plugins/npfunctions.h: fix the return type for NPN_IntFromIdentifierProcPtr to be int32_t
+
2006-09-04 Timothy Hatcher <timothy@apple.com>
Reviewed by Darin.
typedef NPIdentifier (*NPN_GetStringIdentifierProcPtr) (const NPUTF8 *name);
typedef void (*NPN_GetStringIdentifiersProcPtr) (const NPUTF8 **names, int32_t nameCount, NPIdentifier *identifiers);
typedef NPIdentifier (*NPN_GetIntIdentifierProcPtr) (int32_t intid);
-typedef NPIdentifier (*NPN_IntFromIdentifierProcPtr) (NPIdentifier identifier);
+typedef int32_t (*NPN_IntFromIdentifierProcPtr) (NPIdentifier identifier);
typedef bool (*NPN_IdentifierIsStringProcPtr) (NPIdentifier identifier);
typedef NPUTF8 *(*NPN_UTF8FromIdentifierProcPtr) (NPIdentifier identifier);