2016-01-06 00:24:54 +01:00
|
|
|
#pragma once
|
2016-01-07 14:02:17 +01:00
|
|
|
#include <wut.h>
|
2016-06-08 01:15:43 +02:00
|
|
|
#include "enum.h"
|
2016-01-06 00:24:54 +01:00
|
|
|
|
2016-01-07 17:02:54 +01:00
|
|
|
/**
|
|
|
|
* \defgroup gx2_state State
|
|
|
|
* \ingroup gx2
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2016-01-07 15:09:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2016-01-07 14:02:17 +01:00
|
|
|
|
2016-01-06 00:24:54 +01:00
|
|
|
void
|
|
|
|
GX2Init(uint32_t *attributes);
|
|
|
|
|
|
|
|
void
|
|
|
|
GX2Shutdown();
|
|
|
|
|
2016-08-26 07:01:44 +02:00
|
|
|
void
|
|
|
|
GX2Flush();
|
|
|
|
|
2016-01-07 15:09:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2016-01-07 17:02:54 +01:00
|
|
|
|
|
|
|
/** @} */
|