mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-20 23:27:13 +00:00
f149e007e1
This was SVN commit r520.
21 lines
422 B
C
Executable File
21 lines
422 B
C
Executable File
#include "res/h_mgr.h"
|
|
#include "res/vfs.h"
|
|
#include "res/tex.h"
|
|
#include "res/mem.h"
|
|
#include "res/font.h"
|
|
#include "res/unifont.h"
|
|
|
|
|
|
extern int res_reload(const char* fn);
|
|
|
|
|
|
// the following functions must be called from the same thread!
|
|
// (wfam limitation)
|
|
|
|
|
|
extern int res_watch_dir(const char* const path, uint* const reqnum);
|
|
|
|
extern int res_cancel_watch(const uint reqnum);
|
|
|
|
extern int res_reload_changed_files();
|