Add missing files
[bcusdk.git] / bcu / include / proptypes.h
blob0f964d16879408d4fd5bde08cf42a0281ce01228
1 /*
2 BCU SDK bcu development enviroment
3 Copyright (C) 2005-2011 Martin Koegler <mkoegler@auto.tuwien.ac.at>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 In addition to the permissions in the GNU General Public License,
11 you may link the compiled version of this file into combinations
12 with other programs, and distribute those combinations without any
13 restriction coming from the use of this file. (The General Public
14 License restrictions do apply in other respects; for example, they
15 cover modification of the file, and distribution when not linked into
16 a combine executable.)
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #ifndef PROP_TYPES_H
29 #define PROP_TYPES_H
31 typedef sint1 PROP1_T;
32 typedef uint1 PROP2_T;
33 typedef sint2 PROP3_T;
34 typedef uint2 PROP4_T;
35 typedef uint2 PROP5_T;
36 typedef uint3 PROP6_T;
37 typedef uint3 PROP7_T;
38 typedef sint4 PROP8_T;
39 typedef uint4 PROP9_T;
40 typedef float PROP10_T;
41 typedef double PROP11_T;
42 typedef uint1 PROP12_T[10];
43 typedef uint3 PROP13_T;
44 typedef uint5 PROP14_T;
46 typedef uint1 PROP17_T;
47 typedef uint2 PROP18_T;
48 typedef uint3 PROP19_T;
49 typedef uint4 PROP20_T;
50 typedef uint5 PROP21_T;
51 typedef uint6 PROP22_T;
52 typedef uint7 PROP23_T;
53 typedef uint8 PROP24_T;
54 typedef uint1 PROP25_T[9];
55 typedef uint1 PROP26_T[10];
57 typedef struct
59 bool write;
60 uint1 ptr;
61 } PropertyRequest;
62 typedef struct
64 bool error;
65 uint1 ptr;
66 uint1 length;
67 } PropertyResult;
69 #endif