Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xtgetclassextension(3xt) [osf1 man page]

XtGetClassExtension(3Xt)												  XtGetClassExtension(3Xt)

NAME
XtGetClassExtension - locate a class extension record SYNOPSIS
XtPointer XtGetClassExtension(object_class, byte_offset type, version, record_size) WidgetClass object_class; Cardinal byte_offset; XrmQuark type; long version; Cardinal record_size; ARGUMENTS
Specifies the widget class containing the extension list to be searched. Specifies the offset in bytes form the base of the widget class of the extension field to be searched. Specifies the name of the class extension to be located. Specifies the minimum acceptable version of the class extension required for a match. Specifies the minimum acceptable length of the class extension record required for match, or 0. DESCRIPTION
The list of extension records at the specified offset in the specified widget_class will be searched for a match on the specified type, a version greater than or equal to the specified version, and a record size greater than or equal the specified record_size if it is nonzero. XtGetClassExtension returns a pointer to a matching extension record or NULL if no match is found. The returned extension record is owned by the widget class and must not be modified or freed by the caller, except possibly to be modified by the widget class owner. SEE ALSO
X Toolkit Intrinsics -- C Language Interface Xlib -- C Language X Interface XtGetClassExtension(3Xt)

Check Out this Related Man Page

XtGetClassExtension(3)						   XT FUNCTIONS 					    XtGetClassExtension(3)

NAME
XtGetClassExtension - locate a class extension record SYNTAX
XtPointer XtGetClassExtension(WidgetClass object_class, Cardinal byte_offset, XrmQuark type, long version, Cardinal record_size); ARGUMENTS
object_class Specifies the widget class containing the extension list to be searched. byte_offset Specifies the offset in bytes form the base of the widget class of the extension field to be searched. type Specifies the name of the class extension to be located. version Specifies the minimum acceptable version of the class extension required for a match. record_size Specifies the minimum acceptable length of the class extension record required for match, or 0. DESCRIPTION
The list of extension records at the specified offset in the specified widget_class will be searched for a match on the specified type, a version greater than or equal to the specified version, and a record size greater than or equal the specified record_size if it is nonzero. XtGetClassExtension returns a pointer to a matching extension record or NULL if no match is found. The returned extension record is owned by the widget class and must not be modified or freed by the caller, except possibly to be modified by the widget class owner. SEE ALSO
X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 libXt 1.0.7 XtGetClassExtension(3)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

tr command

I have a record that contains a equal sign plus a linefeed right behind it in the middle of the record, and the end of the record contains a linefeef which I want to keep. I want to remove the equal sign plus linefeed but I am having no luck. I'm using the tr command. Any ideas. (3 Replies)
Discussion started by: Dan Savarino
3 Replies

2. UNIX for Dummies Questions & Answers

gsed 4.1.5 cannot find ".+" in my file

Hi all I have a file with a single record: "ab"c",asb,"dfe 7"",bbv",12345,q17,"a field with a comma, here",1234.56 If I issue (will print if a match is found) sed -n -e "s/.+/&/gp" myfile > myoutfile myoutfile is always empty. If I issue myoutfile contains the... (2 Replies)
Discussion started by: jgrogan
2 Replies

3. UNIX for Dummies Questions & Answers

About the file extension

Hi everyone, Can we know that which type of file is there without opening a file thanks in advance.... kunal patil (3 Replies)
Discussion started by: kunalpatil09
3 Replies

4. Shell Programming and Scripting

Getting foreach to read a parameter with blank space

my program is designed to take the first parameters as extension, then the rest of the parameters as files to be searched for and, if found, modified by the extension. If not found, it prints an error. Everything is great until: ./chExt.sh 'com' 'king cobra.dat' where $file splits up the two... (2 Replies)
Discussion started by: username652719
2 Replies