summaryrefslogtreecommitdiff
path: root/shared/dst_hack.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/dst_hack.h')
-rw-r--r--shared/dst_hack.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/dst_hack.h b/shared/dst_hack.h
index 550098a2..2e25cf81 100644
--- a/shared/dst_hack.h
+++ b/shared/dst_hack.h
@@ -19,6 +19,8 @@ Solve DST +-1h and time zone shift issues on FAT drives
*/
bool isFatDrive(const Zstring& fileName); //throw ()
+bool isFatDrive(HANDLE hFile); //throw() -> call ONLY if vistaOrLater() == true!
+bool vistaOrLater();
//all subsequent functions may throw the std::runtime_error exception!
bgstack15