wut/include/gx2/state.h

34 lines
403 B
C
Raw Normal View History

2016-01-06 00:24:54 +01:00
#pragma once
#include <wut.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-08 16:28:52 +01:00
typedef enum GX2InitAttributes
2016-01-06 00:24:54 +01:00
{
GX2_INIT_END = 0,
GX2_INIT_CMD_BUF_BASE = 1,
GX2_INIT_CMD_BUF_POOL_SIZE = 2,
GX2_INIT_ARGC = 7,
GX2_INIT_ARGV = 8,
2016-01-08 16:28:52 +01:00
} GX2InitAttributes;
2016-01-06 00:24:54 +01:00
void
GX2Init(uint32_t *attributes);
void
GX2Shutdown();
2016-01-07 15:09:43 +01:00
#ifdef __cplusplus
}
#endif
2016-01-07 17:02:54 +01:00
/** @} */