2016-01-07 13:07:13 +01:00
|
|
|
#pragma once
|
2018-06-15 11:49:37 +02:00
|
|
|
|
|
|
|
/*
|
2019-06-20 15:37:26 +02:00
|
|
|
* wut 1.0.0-beta
|
2018-06-15 11:49:37 +02:00
|
|
|
*
|
2019-06-20 15:37:26 +02:00
|
|
|
* https://github.com/devkitPro/wut
|
2018-06-15 11:49:37 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-07 13:07:13 +01:00
|
|
|
#include "wut_structsize.h"
|
|
|
|
#include "wut_types.h"
|
2019-04-22 04:43:37 +02:00
|
|
|
#include "wut_rplwrap.h"
|
2020-03-14 01:04:28 +01:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
|
|
|
#define WUT_DEPRECATED(reason) __attribute__((deprecated(reason)))
|
|
|
|
|
|
|
|
#else // not __GNUC__
|
|
|
|
|
|
|
|
#define WUT_DEPRECATED(reason)
|
|
|
|
|
|
|
|
#endif //__GNUC__
|