mirror of
https://github.com/Maschell/hid_to_vpad.git
synced 2024-11-10 01:15:06 +01:00
19 lines
218 B
C
19 lines
218 B
C
#ifndef _DISCDUMPER_H_
|
|
#define _DISCDUMPER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void StartFunction(void);
|
|
void Reset(void);
|
|
|
|
void SetServerIp(u32 ip);
|
|
u32 GetServerIp(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|