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

This commit is contained in:
mkaply%us.ibm.com 2003-01-30 18:52:33 +00:00
Родитель f5ae0f7187
Коммит 90096b4fda
1 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -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_