mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
9 lines
180 B
C
9 lines
180 B
C
#ifndef __SYNC_H_
|
|
#define __SYNC_H_
|
|
|
|
void sync_before_read(void *p, u32 len);
|
|
void sync_after_write(const void *p, u32 len);
|
|
void sync_before_exec(const void *p, u32 len);
|
|
|
|
#endif
|