Revision 12350,
853 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 | * |
---|
3 | * Copyright (C) 1988, 1989 by the Massachusetts Institute of Technology |
---|
4 | * Developed by the MIT Student Information Processing Board (SIPB). |
---|
5 | * For copying information, see the file mit-copyright.h in this release. |
---|
6 | * |
---|
7 | */ |
---|
8 | /* |
---|
9 | * $Id: trn_spec.h,v 1.3 1999-01-22 23:09:48 ghudson Exp $ |
---|
10 | * |
---|
11 | * Transaction specifiers, and things which use them. |
---|
12 | */ |
---|
13 | |
---|
14 | /* |
---|
15 | * Flags: |
---|
16 | */ |
---|
17 | #define TSPEC_ONLY_ONE (0x0001) /* If set, only one message */ |
---|
18 | #define TSPEC_DEFAULT_ALL (0x0002) /* If empty, default to all |
---|
19 | * messages */ |
---|
20 | #define TSPEC_DEFAULT_CUR (0x0004) /* If empty, default to current |
---|
21 | * message */ |
---|
22 | |
---|
23 | typedef struct _tgen { |
---|
24 | trn_nums (*nextfn)(); /* Generator function */ |
---|
25 | trn_info *tinfo; /* Transaction info */ |
---|
26 | mtg_info *minfo; /* Meeting info */ |
---|
27 | int flags; /* Flags */ |
---|
28 | struct _tgen *next; /* Next one */ |
---|
29 | } trn_gen; |
---|
30 | |
---|
31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.