mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
15 lines
310 B
C
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
|