My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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