Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
dmon.h
✓ #include <dmon.h>
Watch current directory recursively for file changes
#include <dmon.h>
#include <stdio.h>
void callback(dmon_watch_id id, dmon_action action, const char* dirpath, const char* filename, const char* oldname, void* user) {
printf("File changed: %s/%s\n", dirpath, filename);
}
int main() {
dmon_init();
dmon_watch("./", callback, DMON_WATCH_RECURSIVE, NULL);
getchar();
dmon_deinit();
return 0;
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
2022-02-08latest on vcpkg
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.