1
0
forked from 0ad/0ad
0ad/source/lib/sysdep/dir_watch.h

23 lines
712 B
C
Raw Normal View History

/**
* =========================================================================
* File : dir_watch.h
* Project : 0 A.D.
* Description : portable directory change notification API.
* =========================================================================
*/
// license: GPL; see lib/license.txt
#ifndef INCLUDED_DIR_WATCH
#define INCLUDED_DIR_WATCH
2004-07-31 21:55:36 +02:00
// path: portable and relative, must add current directory and convert to native
// better to use a cached string from rel_chdir - secure
extern LibError dir_add_watch(const char* path, intptr_t* watch);
2004-07-31 21:55:36 +02:00
extern LibError dir_cancel_watch(intptr_t watch);
2004-07-31 21:55:36 +02:00
extern LibError dir_get_changed_file(char* fn);
#endif // #ifndef INCLUDED_DIR_WATCH