#ifdef _WIN32 #include // Path: init.h #include "init.h" #include int hide_file(const char *path) { if (path == NULL) { return -1; } if (strnlen(path, _MAX_PATH) > 0) { if (SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) == 0) { return 1; } } else { return 1; } return 0; } #else int hide_file(const char *path) { return 0; } #endif