Fundamental Type Definitions
Macro Definitions
Type Aliases
signed char |
|
void * |
|
void |
|
signed char |
|
unsigned char |
|
short int |
|
unsigned short int |
|
int |
|
unsigned int |
|
float |
|
double |
|
char |
|
char |
Detailed Description
- group a3d_fundamental_types
- Version
2.0
Macro Definition
-
HMODULE
A handle to a module.
Type Alias Documentation
-
typedef signed char A3DBool
Standard boolean type.
-
typedef void *A3DPtr
Void pointer.
-
typedef void A3DVoid
Void.
-
typedef signed char A3DInt8
Signed integer guaranteed to be 8-bit on all platforms.
-
typedef unsigned char A3DUns8
Unsigned integer guaranteed to be 8-bit on all platforms.
-
typedef short int A3DInt16
Signed integer guaranteed to be 16-bit on all platforms.
-
typedef unsigned short int A3DUns16
Unsigned integer guaranteed to be 16-bit on all platforms.
-
typedef int A3DInt32
Signed integer guaranteed to be 32-bit on all platforms.
-
typedef unsigned int A3DUns32
Unsigned integer guaranteed to be 32-bit on all platforms.
-
typedef float A3DFloat
Standard C
float
type.
-
typedef double A3DDouble
Standard C
double
type.
-
typedef char A3DUTF8Char
Standard UTF-8
char
type.
-
typedef char A3DUniChar
Standard Non-Unicode
char
type.