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

54 Chapter 2
What’s In This Version
11i Features and Updates
#define XmStackFree(pointer, stack_cache_array) \
if ((pointer) != ((XtPointer)(stack_cache_array))) \
XtFree(pointer);
Motif 2.1
#define XmStackAlloc(size, stack_cache_array) \
((((char*)(stack_cache_array) != NULL) && \
((size) <= sizeof(stack_cache_array))) \
? (char *)(stack_cache_array) \
: XtMalloc((unsigned)(size)))
#define XmStackFree(pointer, stack_cache_array) \
if ((pointer) != ((char*)(stack_cache_array))) \
XtFree(pointer);
The following structure has been removed:
XmFontListRec;
The following structure has been moved to XmStringI.h:
XmFontListContextRec;
XmStringContextRec
The following function declaration has been moved to BaseClassI.h:
_XmSecondaryResourceData();
68.XmIm.h
The following function declaration has been changed:
Motif 1.2
extern XIC XmImGetXIC(Widget w,
XmInputPolicy input_policy,
ArgList args,
Cardinal num_args) ;