mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 13:42:47 +00:00
14 lines
214 B
C
Executable File
14 lines
214 B
C
Executable File
#pragma once
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct {
|
|
s16 cpad_x, cpad_y;
|
|
s16 ts_x, ts_y;
|
|
} CODEC_Input;
|
|
|
|
void CODEC_Init(void);
|
|
|
|
void CODEC_GetRawData(u32 *buffer);
|
|
void CODEC_Get(CODEC_Input *input);
|