mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-06 15:05:47 -07:00
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.
19 lines
369 B
C++
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.
|
|
}
|