mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 13:49:49 +00:00
3bd8b94fbb
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1673 311d38ba-8fff-0310-9ca6-ca027cbcb966
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
/* $XFree86$ */
|
|
|
|
#ifndef _XtcreateI_h
|
|
#define _XtcreateI_h
|
|
|
|
extern Widget _XtCreateWidget(String name, WidgetClass widget_class,
|
|
Widget parent, ArgList args, Cardinal num_args,
|
|
XtTypedArgList typed_args,
|
|
Cardinal num_typed_args);
|
|
extern Widget _XtCreatePopupShell(String name, WidgetClass widget_class,
|
|
Widget parent, ArgList args,
|
|
Cardinal num_args, XtTypedArgList typed_args,
|
|
Cardinal num_typed_args);
|
|
extern Widget _XtAppCreateShell(String name, String class,
|
|
WidgetClass widget_class, Display *display,
|
|
ArgList args, Cardinal num_args,
|
|
XtTypedArgList typed_args,
|
|
Cardinal num_typed_args);
|
|
extern Widget _XtCreateHookObj(Screen *screen);
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
/* VarCreate.c */
|
|
extern Widget _XtVaOpenApplication(XtAppContext *app_context_return,
|
|
_Xconst char* application_class,
|
|
XrmOptionDescList options, Cardinal num_options,
|
|
int *argc_in_out, String *argv_in_out,
|
|
String *fallback_resources, WidgetClass widget_class,
|
|
va_list var_args);
|
|
extern Widget _XtVaAppInitialize(XtAppContext *app_context_return,
|
|
_Xconst char* application_class,
|
|
XrmOptionDescList options, Cardinal num_options,
|
|
int *argc_in_out, String *argv_in_out,
|
|
String *fallback_resources, va_list var_args);
|
|
|
|
#endif /* _XtcreateI_h */
|