1
0
forked from 0ad/0ad
0ad/source/lib/sysdep/osx/dir_watch.cpp
olsner ea65a2ad8e Picking up the pieces (part 1)
This was SVN commit r5376.
2007-09-26 05:30:57 +00:00

22 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.
}