ODALID Librairie Carte MIFARE v0.5
Chargement...
Recherche...
Aucune correspondance
TypeDefs.h
Aller à la documentation de ce fichier.
1/*
2*
3* Copyright (c) 2009-2021 ODALID - https://odalid.com
4*
5*/
6
15#ifndef TYPEDEFS_H
16#define TYPEDEFS_H
17
18#if defined(__GNUC__ )
19 #include <stdint.h>
20#else
27//* BOOL
28//*/
29//*@{*/
30//typedef unsigned int BOOL;
31//*@}*/
32
37typedef unsigned char uint8_t;
44typedef unsigned short uint16_t;
51typedef unsigned long int uint32_t;
58typedef unsigned long long int uint64_t;
65typedef signed char int8_t;
72typedef short int16_t;
79typedef long int int32_t;
86typedef long long int int64_t;
92#endif
93
94#ifdef _WIN32
95 #include <winsock2.h>
96#else
97 typedef uint8_t BOOL;
98 typedef int16_t SOCKET;
99 typedef int16_t HANDLE;
100 #ifndef TRUE
101 #define TRUE 1
102 #endif
103 #ifndef FALSE
104 #define FALSE 0
105 #endif
106#endif
107
108#endif /*TYPEDEFS_H*/
uint8_t BOOL
Definition TypeDefs.h:97
long long int int64_t
64 bit signe
Definition TypeDefs.h:86
unsigned short uint16_t
16 bit non signe
Definition TypeDefs.h:44
unsigned long int uint32_t
32 bit non signe
Definition TypeDefs.h:51
long int int32_t
32 bit signe
Definition TypeDefs.h:79
short int16_t
16 bit signe
Definition TypeDefs.h:72
unsigned char uint8_t
BOOL.
Definition TypeDefs.h:37
unsigned long long int uint64_t
64 bit non signe
Definition TypeDefs.h:58
signed char int8_t
8 bit signe
Definition TypeDefs.h:65