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