summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:49 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:49 +0000
commit6a13c9e08bb042c81ae904c44a38a50d785c824e (patch)
tree660670800ae1b4efffb9df9095dc288fe30b8011
parent0117b0b441d8835a11a2886f3c8aed937dcffa9d (diff)
Initial revisionXORG-STABLE
-rw-r--r--include/X11/CreateI.h37
-rw-r--r--include/X11/ShellI.h12
2 files changed, 49 insertions, 0 deletions
diff --git a/include/X11/CreateI.h b/include/X11/CreateI.h
new file mode 100644
index 0000000..482317b
--- /dev/null
+++ b/include/X11/CreateI.h
@@ -0,0 +1,37 @@
+/* $XFree86: xc/lib/Xt/CreateI.h,v 1.1 2001/08/22 22:52:17 dawes Exp $ */
+
+#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 */
diff --git a/include/X11/ShellI.h b/include/X11/ShellI.h
new file mode 100644
index 0000000..33d45da
--- /dev/null
+++ b/include/X11/ShellI.h
@@ -0,0 +1,12 @@
+/* $XFree86: xc/lib/Xt/ShellI.h,v 1.1 2001/08/18 02:41:29 dawes Exp $ */
+
+#ifndef _XtShellInternal_h
+#define _XtShellInternal_h
+
+#include <X11/Xfuncproto.h>
+
+_XFUNCPROTOBEGIN
+
+extern void _XtShellGetCoordinates(Widget widget, Position *x, Position *y);
+
+#endif /* _XtShellInternal_h */