|
Revision 5828, 0.6 KB
(checked in by westram, 3 years ago)
|
- changed ulong->ULONG and uint->UINT (ulong/uint are missing under OSX)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | /* -------------------------------------------------------------------------- */ |
|---|
| 2 | |
|---|
| 3 | #ifndef _A3_TYPES_H |
|---|
| 4 | #define _A3_TYPES_H |
|---|
| 5 | |
|---|
| 6 | /* ----------------------------------------------------------------------------- |
|---|
| 7 | Datentypen |
|---|
| 8 | ----------------------------------------------------------------------------- */ |
|---|
| 9 | |
|---|
| 10 | typedef char *str; |
|---|
| 11 | |
|---|
| 12 | typedef unsigned short ushort; |
|---|
| 13 | typedef unsigned int UINT; |
|---|
| 14 | |
|---|
| 15 | /* -------------------------------------------------------------------------- */ |
|---|
| 16 | |
|---|
| 17 | #endif |
|---|
| 18 | |
|---|
| 19 | /* -------------------------------------------------------------------------- */ |
|---|