aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/PropVariantConv.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2022-06-20 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 13:35:20 +0500
commita3e1d227377188734b82f023f96f8e25dc40f3e6 (patch)
tree23cad8d47eb23d26ea727b4f7f4a65124f724065 /CPP/Windows/PropVariantConv.h
parentf19f813537c7aea1c20749c914e756b54a9c3cf5 (diff)
download7zip-22.00.tar.gz
7zip-22.00.tar.bz2
7zip-22.00.zip
22.0022.00
Diffstat (limited to 'CPP/Windows/PropVariantConv.h')
-rw-r--r--CPP/Windows/PropVariantConv.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/CPP/Windows/PropVariantConv.h b/CPP/Windows/PropVariantConv.h
index 390e0b8..6067784 100644
--- a/CPP/Windows/PropVariantConv.h
+++ b/CPP/Windows/PropVariantConv.h
@@ -10,11 +10,14 @@
10#define kTimestampPrintLevel_DAY -3 10#define kTimestampPrintLevel_DAY -3
11// #define kTimestampPrintLevel_HOUR -2 11// #define kTimestampPrintLevel_HOUR -2
12#define kTimestampPrintLevel_MIN -1 12#define kTimestampPrintLevel_MIN -1
13#define kTimestampPrintLevel_SEC 0 13#define kTimestampPrintLevel_SEC 0
14#define kTimestampPrintLevel_NTFS 7 14#define kTimestampPrintLevel_NTFS 7
15#define kTimestampPrintLevel_NS 9
15 16
16bool ConvertUtcFileTimeToString(const FILETIME &ft, char *s, int level = kTimestampPrintLevel_SEC) throw(); 17bool ConvertUtcFileTimeToString(const FILETIME &ft, char *s, int level = kTimestampPrintLevel_SEC) throw();
17bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *s, int level = kTimestampPrintLevel_SEC) throw(); 18bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *s, int level = kTimestampPrintLevel_SEC) throw();
19bool ConvertUtcFileTimeToString2(const FILETIME &ft, unsigned ns100, char *s, int level = kTimestampPrintLevel_SEC) throw();
20bool ConvertUtcFileTimeToString2(const FILETIME &ft, unsigned ns100, wchar_t *s, int level = kTimestampPrintLevel_SEC) throw();
18 21
19// provide at least 32 bytes for buffer including zero-end 22// provide at least 32 bytes for buffer including zero-end
20// don't send VT_BSTR to these functions 23// don't send VT_BSTR to these functions