Blame doc/man/man3/XmRepTypeGetRecord.3

Packit b099d7
'\" t
Packit b099d7
...\" RepTypGC.sgm /main/8 1996/09/08 20:58:34 rws $
Packit b099d7
.de P!
Packit b099d7
.fl
Packit b099d7
\!!1 setgray
Packit b099d7
.fl
Packit b099d7
\\&.\"
Packit b099d7
.fl
Packit b099d7
\!!0 setgray
Packit b099d7
.fl			\" force out current output buffer
Packit b099d7
\!!save /psv exch def currentpoint translate 0 0 moveto
Packit b099d7
\!!/showpage{}def
Packit b099d7
.fl			\" prolog
Packit b099d7
.sy sed -e 's/^/!/' \\$1\" bring in postscript file
Packit b099d7
\!!psv restore
Packit b099d7
.
Packit b099d7
.de pF
Packit b099d7
.ie     ?\\*(f1?? .ds f1 \\n(.f
Packit b099d7
.el .ie ?\\*(f2?? .ds f2 \\n(.f
Packit b099d7
.el .ie ?\\*(f3?? .ds f3 \\n(.f
Packit b099d7
.el .ie ?\\*(f4?? .ds f4 \\n(.f
Packit b099d7
.el .tm ? font overflow
Packit b099d7
.ft \\$1
Packit b099d7
..
Packit b099d7
.de fP
Packit b099d7
.ie     !?\\*(f4?? \{\
Packit b099d7
.	ft \\*(f4
Packit b099d7
.	ds f4\"
Packit b099d7
'	br \}
Packit b099d7
.el .ie !?\\*(f3?? \{\
Packit b099d7
.	ft \\*(f3
Packit b099d7
.	ds f3\"
Packit b099d7
'	br \}
Packit b099d7
.el .ie !?\\*(f2?? \{\
Packit b099d7
.	ft \\*(f2
Packit b099d7
.	ds f2\"
Packit b099d7
'	br \}
Packit b099d7
.el .ie !?\\*(f1?? \{\
Packit b099d7
.	ft \\*(f1
Packit b099d7
.	ds f1\"
Packit b099d7
'	br \}
Packit b099d7
.el .tm ? font underflow
Packit b099d7
..
Packit b099d7
.ds f1\"
Packit b099d7
.ds f2\"
Packit b099d7
.ds f3\"
Packit b099d7
.ds f4\"
Packit b099d7
.ta 8n 16n 24n 32n 40n 48n 56n 64n 72n 
Packit b099d7
.TH "XmRepTypeGetRecord" "library call"
Packit b099d7
.SH "NAME"
Packit b099d7
\fBXmRepTypeGetRecord\fP \(em A representation type manager function that
Packit b099d7
returns information about a representation type
Packit b099d7
.iX "XmRepTypeGetRecord"
Packit b099d7
.iX "representation type manager functions" "XmRepTypeGetRecord"
Packit b099d7
.SH "SYNOPSIS"
Packit b099d7
.PP
Packit b099d7
.nf
Packit b099d7
#include <Xm/RepType\&.h>
Packit b099d7
\fBXmRepTypeEntry \fBXmRepTypeGetRecord\fP\fR(
Packit b099d7
\fBXmRepTypeId \fBrep_type_id\fR\fR);
Packit b099d7
.fi
Packit b099d7
.SH "DESCRIPTION"
Packit b099d7
.PP
Packit b099d7
\fBXmRepTypeGetRecord\fP retrieves information about
Packit b099d7
a particular representation type that is registered with
Packit b099d7
the representation type manager\&. This routine allocates
Packit b099d7
memory for the returned data\&. The application must free
Packit b099d7
this memory using \fBXtFree\fP\&.
Packit b099d7
.IP "\fIrep_type_id\fP" 10
Packit b099d7
The identification number of the representation type
Packit b099d7
.PP
Packit b099d7
The representation type entry structure contains the following
Packit b099d7
information:
Packit b099d7
.PP
Packit b099d7
.nf
Packit b099d7
typedef struct
Packit b099d7
{
Packit b099d7
        String  \fIrep_type_name\fP;
Packit b099d7
        String  *\fIvalue_names\fP;
Packit b099d7
        unsigned char   *\fIvalues\fP;
Packit b099d7
        unsigned char   \fInum_values\fP;
Packit b099d7
        Boolean \fIreverse_installed\fP;
Packit b099d7
        XmRepTypeId     \fIrep_type_id\fP;
Packit b099d7
} XmRepTypeEntryRec, *XmRepTypeEntry;
Packit b099d7
\fB\fR(\fBvoid\fR)
Packit b099d7
.fi
Packit b099d7
.IP "\fIrep_type_name\fP" 10
Packit b099d7
The name of the representation type
Packit b099d7
.IP "\fIvalue_names\fP" 10
Packit b099d7
An array of representation type value names
Packit b099d7
.IP "\fIvalues\fP" 10
Packit b099d7
An array of representation type numerical values
Packit b099d7
.IP "\fInum_values\fP" 10
Packit b099d7
The number of values associated with the representation type
Packit b099d7
.IP "\fIreverse_installed\fP" 10
Packit b099d7
A flag that indicates whether or not the reverse converter is
Packit b099d7
installed
Packit b099d7
.IP "\fIrep_type_id\fP" 10
Packit b099d7
The identification number of the representation type
Packit b099d7
.SH "RETURN"
Packit b099d7
.PP
Packit b099d7
Returns a pointer to the representation type entry structure that
Packit b099d7
describes the representation type\&.
Packit b099d7
.SH "RELATED"
Packit b099d7
.PP
Packit b099d7
\fBXmRepTypeGetId\fP(3),
Packit b099d7
\fBXmRepTypeGetRegistered\fP(3), and
Packit b099d7
\fBXmRepTypeRegister\fP(3)\&.
Packit b099d7
...\" created by instant / docbook-to-man, Sun 22 Dec 1996, 20:29