XmRepTypeGetNameList(3X)XmRepTypeGetNameList(3X)NAME
XmRepTypeGetNameList - A representation type manager function that generates a list of values for a representation type
SYNOPSIS
#include <Xm/RepType.h>
String * XmRepTypeGetNameList (rep_type_id, use_uppercase_format)
XmRepTypeId rep_type_id;
Boolean use_uppercase_format;
DESCRIPTION
XmRepTypeGetNameList generates a null-terminated list of the value names associated with the specified representation type. Each value name
is a null-terminated string. This routine allocates memory for the returned data. The application must free this memory using XtFree.
Specifies the identification number of the representation type. Specifies a Boolean value that controls the format of the name list. If
True, each value name is in uppercase characters prefixed by "Xm"; if False, the names are in lowercase characters.
RETURN VALUE
Returns a pointer to an array of the value names.
SEE ALSO XmRepTypeGetId(3X), XmRepTypeGetRegistered(3X), XmRepTypeRegister(3X)XmRepTypeGetNameList(3X)
Check Out this Related Man Page
XmRepTypeGetRecord(library call) XmRepTypeGetRecord(library call)
NAME
XmRepTypeGetRecord -- A representation type manager function that returns information about a representation type
SYNOPSIS
#include <Xm/RepType.h>
XmRepTypeEntry XmRepTypeGetRecord(
XmRepTypeId rep_type_id);
DESCRIPTION
XmRepTypeGetRecord retrieves information about a particular representation type that is registered with the representation type manager.
This routine allocates memory for the returned data. The application must free this memory using XtFree.
rep_type_id
The identification number of the representation type
The representation type entry structure contains the following information:
typedef struct
{
String rep_type_name;
String *value_names;
unsigned char *values;
unsigned char num_values;
Boolean reverse_installed;
XmRepTypeId rep_type_id;
} XmRepTypeEntryRec, *XmRepTypeEntry;
(void)
rep_type_name
The name of the representation type
value_names
An array of representation type value names
values An array of representation type numerical values
num_values
The number of values associated with the representation type
reverse_installed
A flag that indicates whether or not the reverse converter is installed
rep_type_id
The identification number of the representation type
RETURN
Returns a pointer to the representation type entry structure that describes the representation type.
RELATED XmRepTypeGetId(3), XmRepTypeGetRegistered(3), and XmRepTypeRegister(3).
XmRepTypeGetRecord(library call)
Hi Folks,
Today hasn't been the best one of my career in IT.
I've been a contractor for a major utility company for a number of years, on a number of seperate IT contracts mostly Unix. The company had 10 different flavours of unix and multiple different varsions of most of them.
At the... (3 Replies)