1 /*************************************************************************
3 * The Contents of this file are made available subject to the terms of
4 * either of the following licenses
6 * - GNU Lesser General Public License Version 2.1
7 * - Sun Industry Standards Source License Version 1.1
9 * Sun Microsystems Inc., October, 2000
11 * GNU Lesser General Public License Version 2.1
12 * =============================================
13 * Copyright 2000 by Sun Microsystems, Inc.
14 * 901 San Antonio Road, Palo Alto, CA 94303, USA
16 * This library is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU Lesser General Public
18 * License version 2.1, as published by the Free Software Foundation.
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * Sun Industry Standards Source License Version 1.1
32 * =================================================
33 * The contents of this file are subject to the Sun Industry Standards
34 * Source License Version 1.1 (the "License"); You may not use this file
35 * except in compliance with the License. You may obtain a copy of the
36 * License at http://www.openoffice.org/license.html.
38 * Software provided under this License is provided on an "AS IS" basis,
39 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
40 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
41 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
42 * See the License for the specific provisions governing your rights and
43 * obligations concerning the Software.
45 * The Initial Developer of the Original Code is: IBM Corporation
47 * Copyright: 2008 by IBM Corporation
49 * All Rights Reserved.
51 * Contributor(s): _______________________________________
54 ************************************************************************/
58 namespace OpenStormBento
61 #define BEN_OBJID_TOC 1 // TOC object ID
62 #define BEN_PROPID_TOC_SEED 2 // TOC object starting seed
63 #define BEN_PROPID_TOC_MIN_SEED 3 // TOC object minimum seed
64 #define BEN_PROPID_TOC_OBJECT 4 // TOC object
65 #define BEN_PROPID_TOC_CONTAINER 5 // TOC object entire container
66 #define BEN_PROPID_TOC_DELETED 6 // TOC object amount deleted
67 #define BEN_TYPEID_TOC_TYPE 19 // TOC object property value type
68 #define BEN_OBJID_WRITEABLE 20 // Predefined ID's below this value will be
69 // written to container TOC. Predefined IDs
70 // above this are not written
71 #define BEN_TYPEID_7_BIT_ASCII 21 // 7-bit ASCII
72 #define BEN_PROPID_GLOBAL_TYPE_NAME 23 // Global type name
73 #define BEN_PROPID_GLOBAL_PROPERTY_NAME 24 // Global property name
74 #define BEN_PROPID_OBJ_REFERENCES 31 // Referenced objects from an object
75 #define BEN_TYPEID_OBJ_REFERENCES_DATA 32 // Reference data
76 #define BEN_OBJID_MIN_GENERAL_ID 100 // Min object ID for general std objects
78 #define BEN_NEW_OBJECT 1 // object + property + type
79 #define BEN_NEW_PROPERTY 2 // property + type
80 #define BEN_NEW_TYPE 3 // type
81 #define BEN_EXPLICIT_GEN 4 // generation
83 #define BEN_SEGMENT_CODE_START 5
84 #define BEN_OFFSET4_LEN4 5 // 4-byte offset + 4-byte length
85 #define BEN_CONT_OFFSET4_LEN4 6 // continued 4-byte offset + 4-byte length
86 #define BEN_OFFSET8_LEN4 7 // 8-byte offset + 4-byte length
87 #define BEN_CONT_OFFSET8_LEN4 8 // continued 8-byte offset + 4-byte length
88 #define BEN_IMMEDIATE0 9 // immediate (length = 0)
89 #define BEN_IMMEDIATE1 10 // immediate (length = 1)
90 #define BEN_IMMEDIATE2 11 // immediate (length = 2)
91 #define BEN_IMMEDIATE3 12 // immediate (length = 3)
92 #define BEN_IMMEDIATE4 13 // immediate (length = 4)
93 #define BEN_CONT_IMMEDIATE4 14 // continued immediate (length = 4)
94 #define BEN_SEGMENT_CODE_END 14
96 #define BEN_REFERENCE_LIST_ID 15 // references recording object ID
97 #define BEN_RESERVED4B 16
98 #define BEN_RESERVED4C 17
99 #define BEN_RESERVED8A 18 // reserved for future use of 8 byte entry
100 #define BEN_RESERVED8B 19 // reserved for future use of 8 byte entry
101 #define BEN_RESERVED8C 20 // reserved for future use of 8 byte entry
102 #define BEN_RESERVED12A 21 // reserved for future use of 12 byte entry
103 #define BEN_RESERVED12B 22 // reserved for future use of 12 byte entry
104 #define BEN_RESERVED12C 23 // reserved for future use of 12 byte entry
105 #define BEN_END_OF_BUFFER 24 // end of current buffer, go to next
106 #define BEN_READ_PAST_END_OF_TOC 50 // Our code
107 #define BEN_NOOP 0xFF
109 }// end OpenStormBento namespace