| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* Description */
- /* Module Name : vardef_hw.h */
- /* Process : VehSim */
- /* Specification : */
- /* Ino.100C0 */
- /* revision Revision: 1.0.0 */
- /* Last change made by Author: NG-Tiofack Kegne, Max Well */
- /* Date for last change $Date: 2014/09/16 13:20:35MESZ $ */
- /* Ino.400C0.000C0 */
- /* Module description : "Compiler specific Type definitions" */
- /* Ino.100C0.400C0.000C0 */
- /* Up Cell GmbH owns all the intellectual property rights, including \ */
- /* copyright and rights of confidence, in these computer programs. Such \ */
- /* intellectual property rights extend to the structure, sequence, \ */
- /* organisation and presentation of the programs and they may not be, in \ */
- /* whole or part, copied, used or transmitted in any form or by any means, \ */
- /* including electronically, without prior written permission of Up Cell GmbH */
- #if !defined(BASETYPES_H)
- /* Ino.220C0.07380.27380.000C0 */
- #define BASETYPES_H
- typedef signed short int typSI16;
- typedef signed long int typSI32;
- typedef signed char typSI8;
- typedef unsigned short int typUI16;
- typedef unsigned long int typUI32;
- typedef unsigned char typUI8;
- typedef unsigned int typUBS;
- typedef signed int typSBS;
- typedef float typF32;
- typedef double typF64;
- #endif
|