Revision 12350,
870 bytes
checked in by ghudson, 26 years ago
(diff) |
Some RCS ID cleanup: delete $Log$ and replace other RCS keywords with $Id$.
|
Line | |
---|
1 | /* |
---|
2 | * $Id: Form.h,v 1.2 1999-01-22 23:16:52 ghudson Exp $ |
---|
3 | * |
---|
4 | * Copyright 1990, 1991 by the Massachusetts Institute of Technology. |
---|
5 | * |
---|
6 | * For copying and distribution information, please see the file |
---|
7 | * <mit-copyright.h>. |
---|
8 | * |
---|
9 | */ |
---|
10 | |
---|
11 | #ifndef _Xj_Form_h |
---|
12 | #define _Xj_Form_h |
---|
13 | |
---|
14 | #include "Jets.h" |
---|
15 | |
---|
16 | extern JetClass formJetClass; |
---|
17 | extern void setForm(); |
---|
18 | |
---|
19 | typedef struct {int littlefoo;} FormClassPart; |
---|
20 | |
---|
21 | typedef struct _FormClassRec { |
---|
22 | CoreClassPart core_class; |
---|
23 | FormClassPart form_class; |
---|
24 | } FormClassRec; |
---|
25 | |
---|
26 | extern FormClassRec formClassRec; |
---|
27 | |
---|
28 | typedef struct { |
---|
29 | char *form; |
---|
30 | int padding; |
---|
31 | } FormPart; |
---|
32 | |
---|
33 | typedef struct _FormRec { |
---|
34 | CorePart core; |
---|
35 | FormPart form; |
---|
36 | } FormRec; |
---|
37 | |
---|
38 | typedef struct _FormRec *FormJet; |
---|
39 | typedef struct _FormClassRec *FormJetClass; |
---|
40 | |
---|
41 | #define XjCForm "Form" |
---|
42 | #define XjNform "form" |
---|
43 | #define XjCPadding "Padding" |
---|
44 | #define XjNpadding "padding" |
---|
45 | |
---|
46 | #endif /* _Xj_Form_h */ |
---|
Note: See
TracBrowser
for help on using the repository browser.