mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
2) VFS: add path_copy convenience routine 3) various lib code: removed unnecessary const cluttering things (like const char* _const_ name in param list) This was SVN commit r1483.
8 lines
290 B
C
Executable file
8 lines
290 B
C
Executable file
|
|
// path: portable and relative, must add current directory and convert to native
|
|
// better to use a cached string from rel_chdir - secure
|
|
extern int dir_add_watch(const char* path, intptr_t* watch);
|
|
|
|
extern int dir_cancel_watch(intptr_t watch);
|
|
|
|
extern int dir_get_changed_file(char* fn);
|