source: tags/initial/ORS_CGI/ors_c_java.hxx

Last change on this file was 2, checked in by oldcode, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 352 bytes
Line 
1
2enum {                          // JAVA HEADERS
3        T2J_NLR_INDEXING   = 10,
4        T2J_LEVEL_INDEXING = 11
5};
6
7struct T2J_item {
8        char *key;
9        int  color;
10        char *value;
11};
12
13
14struct T2J_transfer_struct {
15        T2J_transfer_struct(long size, enum CAT_FIELDS key_index);
16
17        enum CAT_FIELDS key_index;      // which entry should be used
18                                        // as a key
19        long    nitems;
20        struct T2J_item *items;
21};
22
Note: See TracBrowser for help on using the repository browser.