mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
19 lines
296 B
C
19 lines
296 B
C
|
#ifndef _PLAYLOG_H_
|
||
|
#define _PLAYLOG_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
/* Prototypes */
|
||
|
u64 getWiiTime(void);
|
||
|
int Playlog_Update(const char ID[6], const u8 title[84]);
|
||
|
int Playlog_Delete(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif
|
||
|
|