mirror of
https://github.com/libretro/RetroArch
synced 2025-01-11 00:59:56 +00: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
|