0ad/source/lib/sysdep/osx/dir_watch.cpp
janwas b776e58c67 use (newly added) cpu_PageSize instead of sysconf (avoids a critical order dependency on windows)
refactored sysdep code:
- avoid many #if OS_xxx.
- remove bsd.cpp, merge its contents with osx
- move linux-specific parts of unix/ into linux/

This was SVN commit r5363.
2007-09-23 08:05:38 +00:00

19 lines
369 B
C++

#include "precompiled.h"
#include "lib/sysdep/dir_watch.h"
// stub implementations
LibError dir_add_watch(const char * const n_full_path, intptr_t* const watch)
{
return INFO::OK;
}
LibError dir_cancel_watch(const intptr_t watch)
{
return INFO::OK;
}
LibError dir_get_changed_file(char *)
{
return ERR::AGAIN; // Say no files are available.
}