0ad/source/lib/sysdep/os/osx/dir_watch.cpp
janwas a3696c0b91 premake: detect processor architecture from script
lib/sysdep: clean up by moving OS and cpu-arch folders into "os" and
"arch" folders

This was SVN commit r6162.
2008-06-30 17:34:18 +00:00

21 lines
400 B
C++

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