global_header.h 1.4 KB

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