123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /*****************************************************************************/
- /*****************************************************************************/
- /***** *****/
- /***** STANDARD T Y P D E F I N I T I O N E N FUER DAS AXN *****/
- /***** *****/
- /*****************************************************************************/
- /*****************************************************************************/
- /* */
- /* 1. Produktinformation */
- /* */
- /* 1.1 Datei-Name : axnportabce.h */
- /* 1.2 Autor/Datum : Ulrich Koestner / 03.09.1997 */
- /* 1.3 Aenderungen : */
- /* */
- /* Datum | Name | Bemerkung | Vers.*/
- /* ---------+-----------+--------------------------------------------+------*/
- /* 04.11.03 | Hoffmann | New typedefs added. | */
- /* | | | */
- /* | | | */
- /* | | | */
- /* | | | */
- /* */
- /* 2. Inhalt */
- /* Definitionen der Standarttype fuer die AXN-Software unter QNX/Neutrino */
- /* */
- /* 3. Externe Beziehungen: */
- /* */
- /* 4. Compilerhinweise */
- /* */
- /*****************************************************************************/
- /* */
- /* (c) Siemens AG Med Erl 1997 all rigths reserved */
- /* */
- /*****************************************************************************/
- #ifndef AXNPORTABCE_H
- #define AXNPORTABCE_H
- /*****************************************************************************/
- /* Global Includes */
- /*****************************************************************************/
- #include <tchar.h>
- #include <windows.h>
- /*****************************************************************************/
- /* Global Type-Definitions */
- /*****************************************************************************/
- // -
- typedef void axn_void;
- // c = 1 Byte
- //ce typedef char axn_char;
- typedef TCHAR axn_char ;
- // b = 1 Byte
- typedef unsigned char axn_byte;
- // s = 2 Byte
- typedef short axn_short;
- // w = 2 Byte
- typedef unsigned short axn_word ;
- // i = 4 Byte
- typedef int axn_int;
- // ui = 4 Byte
- typedef unsigned int axn_uint;
- // l = x Byte
- typedef long axn_long;
- // ul = x Byte
- typedef unsigned long axn_ulong;
- // f = x Byte
- typedef float axn_float;
- // d = xx Byte
- typedef double axn_double;
- typedef short axn_location; //RST
- typedef int axn_flag; //RST
- typedef axn_uint axn_thread_id;
- typedef axn_uint axn_thread_id_t;
- typedef axn_uint axn_error_code_t;
- typedef axn_uint axn_tls_errorlog_key_t;
- #endif
|