Removed the setFileHidden function for now

This commit is contained in:
Klaas Freitag 2015-06-19 12:56:11 +02:00
Родитель 68668e25bd
Коммит 7d2bb261dc
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -103,7 +103,7 @@ void csync_memstat_check(void) {
CSYNC_LOG(CSYNC_LOG_PRIORITY_INFO, "Memory: %dK total size, %dK resident, %dK shared",
m.size * 4, m.resident * 4, m.shared * 4);
}
#if 0
void csync_win32_set_file_hidden( const char *file, bool h ) {
#ifdef _WIN32
const mbchar_t *fileName;
@ -127,6 +127,7 @@ void csync_win32_set_file_hidden( const char *file, bool h ) {
(void) file;
#endif
}
#endif
bool (*csync_file_locked_or_open_ext) (const char*) = 0; // filled in by library user
void set_csync_file_locked_or_open_ext(bool (*f) (const char*));

Просмотреть файл

@ -30,7 +30,7 @@ const char *csync_instruction_str(enum csync_instructions_e instr);
void csync_memstat_check(void);
void csync_win32_set_file_hidden( const char *file, bool hidden );
// void csync_win32_set_file_hidden( const char *file, bool hidden );
bool csync_file_locked_or_open( const char *dir, const char *fname);
#endif /* _CSYNC_UTIL_H */