My build of nnn with minor changes
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

15 řádky
310 B

  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