My build of nnn with minor changes
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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