Subversion Repositories tendra.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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) DialogSP.h,v 1.1 1996/08/08 14:12:30 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/XmP.h";
36
+USE "motif/1_2", "Xm/DialogS.h";
37
+USE "x5/t", "X11/ShellP.h";
38
 
39
 
40
+FIELD (struct) XmDialogShellPart := { 
41
 
42
	XtGrabKind	grab_kind;
43
	Position	old_x;
44
	Position	old_y;
45
};
46
 
47
 
48
+FIELD (struct) _XmDialogShellRec := { 
49
 
50
	CorePart		core;
51
	CompositePart		composite;
52
	ShellPart		shell;
53
	WMShellPart		wm;
54
	VendorShellPart		vendor;
55
	TransientShellPart	transient;
56
	XmDialogShellPart	dialog;
57
};
58
 
59
+TYPEDEF _XmDialogShellRec XmDialogShellRec;
60
 
61
/* OBSOLETE (for compatibility only */
62
+TYPEDEF _XmDialogShellRec _XmDialogShellWidgetRec;
63
 
64
 
65
+FIELD (struct) XmDialogShellClassPart := { 
66
 
67
	XtPointer		extension;
68
};
69
 
70
 
71
+FIELD (struct) _XmDialogShellClassRec := { 
72
 
73
	CoreClassPart		core_class;
74
	CompositeClassPart	composite_class;
75
	ShellClassPart		shell_class;
76
	WMShellClassPart	wm_shell_class;
77
	VendorShellClassPart	vendor_shell_class;
78
	TransientShellClassPart	transient_shell_class;
79
	XmDialogShellClassPart	dialog_shell_part;
80
};
81
 
82
+TYPEDEF _XmDialogShellClassRec XmDialogShellClassRec;
83
 
84
+EXP lvalue XmDialogShellClassRec xmDialogShellClassRec;
85
 
86
 
87