Developer's Toolkit Release Notes for HP-UX 11i

Chapter 2 53
What’s In This Version
11i Features and Updates
XmImRegister();
XmImUnregister();
XmImSetFocusValues();
XmImSetValues();
XmImUnsetFocus();
XmImGetXIM();
XmImMbLookupString();
XmImVaSetFocusValues();
XmImVaSetValues();
67.XmI.h
The following macros have been removed:
#define Max(x, y) (((x) > (y)) ? (x) : (y))
#define Min(x, y) (((x) < (y)) ? (x) : (y))
#define MOTIF_PRIVATE_GC INT_MAX
The following macros have been renamed:
Motif 1.2
#define AssignMax(x, y) if ((y) > (x)) x = (y)
#define AssignMin(x, y) if ((y) < (x)) x = (y)
Motif 2.1
#define ASSIGN_MAX(x,y) if ((y) > (x)) x = (y)
#define ASSIGN_MIN(x,y) if ((y) < (x)) x = (y)
The following macro has been changed:
Motif 1.2
#define XmStackAlloc(size, stack_cache_array) \
((size) <= sizeof(stack_cache_array) \
? (XtPointer)(stack_cache_array) \
: XtMalloc((unsigned)(size)))