X Version 11 (Release 6.1)
XmuCvtStringToLong(X3xmu)
XmuCvtStringToLong --
convert string to integer of type long
Synopsis
cc . . . -lXmu
#include <X11/Xmu/Converters.h>
void XmuCvtStringToLong(args, num_args, fromVal, toVal)
XrmValuePtr args;
Cardinal *num_args;
XrmValuePtr fromVal;
XrmValuePtr toVal;
Arguments
args-
Argument ignored.
num_args-
This argument must be a pointer to a Cardinal containing 0.
fromVal-
Specifies the string to convert.
toVal-
Returns the converted value.
Description
The XmuCvtStringToLong
function converts a string to an integer of type long.
The num_args argument must be zero.
It parses the
string using
sscanf
with a format of "%ld". To use this converter, include
the following in your widget's ClassInitialize procedure:
XtAddConverter(XtRString, XtRLong, XmuCvtStringToLong,
NULL, 0);
References
XmuCvtFunctionToCallback(X3xmu),
XmuCvtStringToBackingStore(X3xmu),
XmuCvtStringToColorCursor(X3xmu),
XmuCvtStringToCursor(X3xmu),
XmuCvtStringToGravity(X3xmu),
XmuCvtStringToJustify(X3xmu),
XmuCvtStringToOrientation(X3xmu),
XmuCvtStringToShapeStyle(X3xmu),
XmuNewCvtStringToWidget(X3xmu),
XmuReshapeWidget(X3xmu),
XmuCvtStringToWidget(X3xmu)
Xlib - C Language X Interface
© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 25 April 2004