Api-Types.h
1/* Copyright (C) 2008 Marc Boris Duerner
2 SPDX-License-Identifier: LGPL-2.1-or-later WITH mif-exception
3*/
4
5#ifndef PT_API_TYPES_H
6#define PT_API_TYPES_H
7
8#include <Pt/Api.h>
9
10namespace Pt {
11
17typedef int_type int8_t;
18
24typedef uint_type uint8_t;
25
31typedef int_type int16_t;
32
38typedef uint_type uint16_t;
39
45typedef int_type int32_t;
46
52typedef uint_type uint32_t;
53
59typedef int_type int64_t;
60
66typedef uint_type uint64_t;
67
68}
69
70#endif
uint_type uint16_t
Unsigned 16-bit integer type.
Definition Api-Types.h:38
int_type int64_t
Signed 64-bit integer type.
Definition Api-Types.h:59
int_type int32_t
Signed 32-bit integer type.
Definition Api-Types.h:45
uint_type uint32_t
Unsigned 32-bit integer type.
Definition Api-Types.h:52
uint_type uint64_t
Unsigned 64-bit integer type.
Definition Api-Types.h:66
int_type int16_t
Signed 16-bit integer type.
Definition Api-Types.h:31
uint_type uint8_t
Unsigned 8-bit integer type.
Definition Api-Types.h:24
int_type int8_t
Signed 8-bit integer type.
Definition Api-Types.h:17
Core module.
Definition Allocator.h:33