My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

haiku_interop.h 310 B

1234567891011121314
  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4. typedef struct haiku_nm_t *haiku_nm_h;
  5. haiku_nm_h haiku_init_nm();
  6. void haiku_close_nm(haiku_nm_h hnd);
  7. int haiku_watch_dir(haiku_nm_h hnd, const char *path);
  8. int haiku_stop_watch(haiku_nm_h hnd);
  9. int haiku_is_update_needed(haiku_nm_h hnd);
  10. #ifdef __cplusplus
  11. }
  12. #endif