2022-04-04 14:22:31 +00:00
|
|
|
#ifndef __TYPES_H__
|
|
|
|
#define __TYPES_H__
|
2022-03-23 21:22:48 +00:00
|
|
|
|
2022-04-04 14:22:31 +00:00
|
|
|
#ifdef __cplusplus
|
2022-08-13 01:26:00 +00:00
|
|
|
#include "static_assert.hpp"
|
|
|
|
|
2022-04-04 14:22:31 +00:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
2022-03-23 21:22:48 +00:00
|
|
|
|
2022-09-01 00:22:20 +00:00
|
|
|
#include <dolphin/types.h>
|
2022-04-30 08:32:00 +00:00
|
|
|
|
2022-03-23 21:22:48 +00:00
|
|
|
// Pointer to unknown, to be determined at a later date.
|
|
|
|
typedef void* unkptr;
|
|
|
|
|
2022-04-04 14:22:31 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2022-03-23 21:22:48 +00:00
|
|
|
|
|
|
|
#endif
|