comparison dyncall/dyncall_types.h @ 259:ebb3d81be14c

- cosmetics
author Tassilo Philipp
date Sun, 21 May 2017 21:48:04 +0200
parents 3e629dc19168
children f5577f6bf97a
comparison
equal deleted inserted replaced
258:943c182692e2 259:ebb3d81be14c
43 43
44 #ifdef __cplusplus 44 #ifdef __cplusplus
45 extern "C" { 45 extern "C" {
46 #endif 46 #endif
47 47
48 typedef void DCvoid; 48 typedef void DCvoid;
49 typedef DC_BOOL DCbool; 49 typedef DC_BOOL DCbool;
50 typedef char DCchar; 50 typedef char DCchar;
51 typedef unsigned char DCuchar; 51 typedef unsigned char DCuchar;
52 typedef short DCshort; 52 typedef short DCshort;
53 typedef unsigned short DCushort; 53 typedef unsigned short DCushort;
54 typedef int DCint; 54 typedef int DCint;
55 typedef unsigned int DCuint; 55 typedef unsigned int DCuint;
56 typedef long DClong; 56 typedef long DClong;
57 typedef unsigned long DCulong; 57 typedef unsigned long DCulong;
58 typedef DC_LONG_LONG DClonglong; 58 typedef DC_LONG_LONG DClonglong;
59 typedef unsigned DC_LONG_LONG DCulonglong; 59 typedef unsigned DC_LONG_LONG DCulonglong;
60 typedef float DCfloat; 60 typedef float DCfloat;
61 typedef double DCdouble; 61 typedef double DCdouble;
62 typedef DC_POINTER DCpointer; 62 typedef DC_POINTER DCpointer;
63 typedef const char* DCstring; 63 typedef const char* DCstring;
64 64 typedef size_t DCsize;
65 typedef size_t DCsize;
66 65
67 #define DC_TRUE 1 66 #define DC_TRUE 1
68 #define DC_FALSE 0 67 #define DC_FALSE 0
69 68
70 #ifdef __cplusplus 69 #ifdef __cplusplus