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:
@@ -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_
|
||||
|
||||
Reference in New Issue
Block a user