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 |
|
|
|
28 |
/* SCO CID (IXI) DropTrans.h,v 1.1 1996/08/08 14:12:46 wendland Exp */
|
|
|
29 |
|
|
|
30 |
+USE "motif/1_2", "Xm/Xm.h";
|
|
|
31 |
|
|
|
32 |
+CONST int XmTRANSFER_FAILURE;
|
|
|
33 |
+CONST int XmTRANSFER_SUCCESS;
|
|
|
34 |
|
|
|
35 |
+EXP lvalue WidgetClass xmDropTransferObjectClass;
|
|
|
36 |
|
|
|
37 |
+TYPE (struct) _XmDropTransferClassRec;
|
|
|
38 |
+TYPE (struct) _XmDropTransferRec;
|
|
|
39 |
+TYPEDEF _XmDropTransferClassRec * XmDropTransferObjectClass;
|
|
|
40 |
+TYPEDEF _XmDropTransferRec * XmDropTransferObject;
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
+FIELD (struct) _XmDropTransferEntryRec := {
|
|
|
44 |
|
|
|
45 |
XtPointer client_data;
|
|
|
46 |
Atom target;
|
|
|
47 |
};
|
|
|
48 |
|
|
|
49 |
+TYPEDEF _XmDropTransferEntryRec XmDropTransferEntryRec;
|
|
|
50 |
+TYPEDEF _XmDropTransferEntryRec * XmDropTransferEntry;
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
+FUNC Widget XmDropTransferStart(Widget, ArgList, Cardinal);
|
|
|
54 |
+FUNC void XmDropTransferAdd(Widget, XmDropTransferEntry, Cardinal);
|
|
|
55 |
|