From 12f471a465dea9edef1fb9f92ca5f47a53deccc9 Mon Sep 17 00:00:00 2001 From: "seawood%netscape.com" Date: Fri, 2 Nov 2001 06:50:12 +0000 Subject: [PATCH] Fix warnings by only defining _UINT16 & _UINT32 if they aren't already defined. Thanks to Josh Soref for the patch. Bug #107599 git-svn-id: svn://10.0.0.236/trunk@107080 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/include/xp_core.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mozilla/include/xp_core.h b/mozilla/include/xp_core.h index 6a839decf97..4413ca93e7d 100644 --- a/mozilla/include/xp_core.h +++ b/mozilla/include/xp_core.h @@ -248,9 +248,13 @@ typedef int (*FARPROC)(); #ifndef _INT32 #define _INT32 #endif +#ifndef _UINT16 #define _UINT16 +#endif +#ifndef _UINT32 #define _UINT32 #endif +#endif /* function classifications */