2 |
7u83 |
1 |
/*
|
|
|
2 |
COPYRIGHT NOTICE
|
|
|
3 |
|
|
|
4 |
This program is the proprietary property of IXI Ltd, a subsidiary
|
|
|
5 |
of the Santa Cruz Operation (SCO). Use, reproduction, production
|
|
|
6 |
of amended versions and/or transfer of this program is permitted
|
|
|
7 |
PROVIDED THAT:
|
|
|
8 |
|
|
|
9 |
(a) This legend be preserved on any such reproduction and amended
|
|
|
10 |
version.
|
|
|
11 |
|
|
|
12 |
(b) Any recipient of such reproduction or amended version accept
|
|
|
13 |
the conditions set out in this legend.
|
|
|
14 |
|
|
|
15 |
IXI accepts no liability whatsoever in relation to any use to
|
|
|
16 |
which this program may be put and gives no warranty as to the
|
|
|
17 |
program's suitability for any purpose.
|
|
|
18 |
|
|
|
19 |
All rights reserved.
|
|
|
20 |
|
|
|
21 |
Copyright (c) 1995, 1996
|
|
|
22 |
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
/* SCO CID (IXI) WorldP.h,v 1.1 1996/08/08 14:13:56 wendland Exp */
|
|
|
28 |
|
|
|
29 |
%%
|
|
|
30 |
#ifndef __MOTIF_P_HEADERS
|
|
|
31 |
#error Unexpected access to Motif P headers
|
|
|
32 |
#endif
|
|
|
33 |
%%
|
|
|
34 |
|
|
|
35 |
+USE "motif/1_2", "Xm/DesktopP.h";
|
|
|
36 |
|
|
|
37 |
+TYPE (struct) _XmWorldRec;
|
|
|
38 |
+TYPE (struct) _XmWorldClassRec;
|
|
|
39 |
+TYPEDEF _XmWorldRec *XmWorldObject;
|
|
|
40 |
+TYPEDEF _XmWorldClassRec *XmWorldObjectClass;
|
|
|
41 |
|
|
|
42 |
+EXP lvalue WidgetClass xmWorldClass;
|
|
|
43 |
|
|
|
44 |
+FIELD (struct) _XmWorldClassPart := {
|
|
|
45 |
|
|
|
46 |
XtPointer extension;
|
|
|
47 |
};
|
|
|
48 |
|
|
|
49 |
+TYPEDEF _XmWorldClassPart XmWorldClassPart;
|
|
|
50 |
+TYPEDEF _XmWorldClassPart *XmWorldClassPartPtr;
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
+FIELD (struct) _XmWorldClassRec := {
|
|
|
54 |
|
|
|
55 |
ObjectClassPart object_class;
|
|
|
56 |
XmExtClassPart ext_class;
|
|
|
57 |
XmDesktopClassPart desktop_class;
|
|
|
58 |
XmWorldClassPart world_class;
|
|
|
59 |
};
|
|
|
60 |
|
|
|
61 |
+TYPEDEF _XmWorldClassRec XmWorldClassRec;
|
|
|
62 |
|
|
|
63 |
+FIELD (struct) XmWorldPart := {
|
|
|
64 |
|
|
|
65 |
int foo;
|
|
|
66 |
};
|
|
|
67 |
|
|
|
68 |
+TYPEDEF XmWorldPart *XmWorldPartPtr;
|
|
|
69 |
|
|
|
70 |
+EXP lvalue XmWorldClassRec xmWorldClassRec;
|
|
|
71 |
|
|
|
72 |
+FIELD (struct) _XmWorldRec := {
|
|
|
73 |
|
|
|
74 |
ObjectPart object;
|
|
|
75 |
XmExtPart ext;
|
|
|
76 |
XmDesktopPart desktop;
|
|
|
77 |
XmWorldPart world;
|
|
|
78 |
};
|
|
|
79 |
|
|
|
80 |
+TYPEDEF _XmWorldRec XmWorldRec;
|
|
|
81 |
|
|
|
82 |
+FUNC XmWorldObject _XmGetWorldObject(Widget, ArgList, Cardinal *);
|
|
|
83 |
|