Home | History | Annotate | Download | only in src

Lines Matching defs:ext

208     ObjectClassExtension ext, super_ext = NULL;
210 ext = (ObjectClassExtension)
224 if (ext) {
225 if (ext->allocate == XtInheritAllocate)
226 ext->allocate = (super_ext ? super_ext->allocate : NULL);
227 if (ext->deallocate == XtInheritDeallocate)
228 ext->deallocate = (super_ext ? super_ext->deallocate : NULL);
232 ext = (ObjectClassExtension)
234 ext->next_extension = oc->object_class.extension;
235 ext->record_type = NULLQUARK;
236 ext->version = XtObjectExtensionVersion;
237 ext->record_size = sizeof(ObjectClassExtensionRec);
238 ext->allocate = super_ext->allocate;
239 ext->deallocate = super_ext->deallocate;
240 oc->object_class.extension = (XtPointer) ext;