mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 00:31:50 +01:00
29 lines
264 B
C
29 lines
264 B
C
#pragma once
|
|
#include <wut.h>
|
|
#include "enum.h"
|
|
|
|
/**
|
|
* \defgroup gx2_state State
|
|
* \ingroup gx2
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
GX2Init(uint32_t *attributes);
|
|
|
|
void
|
|
GX2Shutdown();
|
|
|
|
void
|
|
GX2Flush();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|