1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-01-26 02:36:36 +00:00
nnn/misc/haiku/haiku_interop.h
Anna Arad fd9fcf741e Get nnn compile and run on Haiku ()
* Add support for Haiku OS

* Adjust DISTFILES and dist rule in haiku
2019-12-27 23:32:20 +05:30

15 lines
310 B
C

#ifdef __cplusplus
extern "C" {
#endif
typedef struct haiku_nm_t *haiku_nm_h;
haiku_nm_h haiku_init_nm();
void haiku_close_nm(haiku_nm_h hnd);
int haiku_watch_dir(haiku_nm_h hnd, const char *path);
int haiku_stop_watch(haiku_nm_h hnd);
int haiku_is_update_needed(haiku_nm_h hnd);
#ifdef __cplusplus
}
#endif