diff options
Diffstat (limited to '')
-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); |