diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /CPP/Windows/PropVariant.h | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-23.01.tar.gz 7zip-23.01.tar.bz2 7zip-23.01.zip |
23.0123.01
Diffstat (limited to 'CPP/Windows/PropVariant.h')
-rw-r--r-- | CPP/Windows/PropVariant.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CPP/Windows/PropVariant.h b/CPP/Windows/PropVariant.h index 171402f..f358fde 100644 --- a/CPP/Windows/PropVariant.h +++ b/CPP/Windows/PropVariant.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Windows/PropVariant.h | 1 | // Windows/PropVariant.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_PROP_VARIANT_H | 3 | #ifndef ZIP7_INC_WINDOWS_PROP_VARIANT_H |
4 | #define __WINDOWS_PROP_VARIANT_H | 4 | #define ZIP7_INC_WINDOWS_PROP_VARIANT_H |
5 | 5 | ||
6 | #include "../Common/MyTypes.h" | 6 | #include "../Common/MyTypes.h" |
7 | #include "../Common/MyWindows.h" | 7 | #include "../Common/MyWindows.h" |
@@ -64,7 +64,7 @@ public: | |||
64 | // wReserved2 = 0; | 64 | // wReserved2 = 0; |
65 | // wReserved3 = 0; | 65 | // wReserved3 = 0; |
66 | // uhVal.QuadPart = 0; | 66 | // uhVal.QuadPart = 0; |
67 | bstrVal = 0; | 67 | bstrVal = NULL; |
68 | } | 68 | } |
69 | 69 | ||
70 | 70 | ||
@@ -104,13 +104,13 @@ public: | |||
104 | const unsigned ns100 = wReserved2; | 104 | const unsigned ns100 = wReserved2; |
105 | if (prec == 0 | 105 | if (prec == 0 |
106 | && prec <= k_PropVar_TimePrec_1ns | 106 | && prec <= k_PropVar_TimePrec_1ns |
107 | && ns100 < 100 | 107 | && ns100 < 100 |
108 | && wReserved3 == 0) | 108 | && wReserved3 == 0) |
109 | return ns100; | 109 | return ns100; |
110 | return 0; | 110 | return 0; |
111 | } | 111 | } |
112 | 112 | ||
113 | ~CPropVariant(); | 113 | ~CPropVariant() throw(); |
114 | CPropVariant(const PROPVARIANT &varSrc); | 114 | CPropVariant(const PROPVARIANT &varSrc); |
115 | CPropVariant(const CPropVariant &varSrc); | 115 | CPropVariant(const CPropVariant &varSrc); |
116 | CPropVariant(BSTR bstrSrc); | 116 | CPropVariant(BSTR bstrSrc); |