OS/2 bustage - just define HIBYTE and LOBYTE for any platform that doesn't have them

git-svn-id: svn://10.0.0.236/trunk@137146 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkaply%us.ibm.com
2003-01-30 18:52:33 +00:00
parent 829f12cb5d
commit ade40bd579

View File

@@ -57,10 +57,6 @@
/**************************************************/
#ifdef XP_UNIX
#include <stdio.h>
#define HIBYTE(i) (i >> 8)
#define LOBYTE(i) (i & 0xff)
#endif //XP_UNIX
/**************************************************/
@@ -79,9 +75,6 @@
#include "jri.h"
#define HIBYTE(i) (i >> 8)
#define LOBYTE(i) (i & 0xff)
// The Mixed Mode procInfos defined in npupp.h assume Think C-
// style calling conventions. These conventions are used by
// Metrowerks with the exception of pointer return types, which
@@ -146,4 +139,12 @@ NPError Private_SetValue(NPP instance, NPNVariable variable, void *value);
#endif //XP_MAC
#ifndef HIBYTE
#define HIBYTE(i) (i >> 8)
#endif
#ifndef LOBYTE
#define LOBYTE(i) (i & 0xff)
#endif
#endif //_NPPLAT_H_