0ad/source/lib/sysdep/dir_watch.h
janwas 9d317d8164 1) removed scaffolding from file
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.
2004-12-09 23:12:02 +00:00

9 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);