mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 04:24:11 -06:00
9.17
This commit is contained in:
committed by
Kornel Lesiński
parent
044e4bb741
commit
2eb60a0598
+1
-1
@@ -34,4 +34,4 @@ HRESULT StringToGUIDA(const char *string, GUID &classID)
|
||||
return StringToGUIDW(MultiByteToUnicodeString(string), classID);
|
||||
}
|
||||
|
||||
}}
|
||||
}}
|
||||
|
||||
+2
-2
@@ -53,7 +53,7 @@ AString GUIDToStringA(REFGUID guid);
|
||||
#define GUIDToString GUIDToStringW
|
||||
#else
|
||||
#define GUIDToString GUIDToStringA
|
||||
#endif // !UNICODE
|
||||
#endif
|
||||
|
||||
HRESULT StringToGUIDW(const wchar_t *string, GUID &classID);
|
||||
HRESULT StringToGUIDA(const char *string, GUID &classID);
|
||||
@@ -61,7 +61,7 @@ HRESULT StringToGUIDA(const char *string, GUID &classID);
|
||||
#define StringToGUID StringToGUIDW
|
||||
#else
|
||||
#define StringToGUID StringToGUIDA
|
||||
#endif // !UNICODE
|
||||
#endif
|
||||
|
||||
|
||||
}}
|
||||
|
||||
@@ -7,4 +7,4 @@
|
||||
namespace NWindows{
|
||||
namespace NConsole{
|
||||
|
||||
}}
|
||||
}}
|
||||
|
||||
@@ -49,4 +49,4 @@ public:
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -45,4 +45,4 @@ public:
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#define __WINDOWS_CONTROL_EDIT_H
|
||||
|
||||
#include "Windows/Window.h"
|
||||
#include "Windows/Defs.h"
|
||||
|
||||
namespace NWindows {
|
||||
namespace NControl {
|
||||
@@ -12,10 +11,9 @@ namespace NControl {
|
||||
class CEdit: public CWindow
|
||||
{
|
||||
public:
|
||||
void SetPasswordChar(WPARAM c)
|
||||
{ SendMessage(EM_SETPASSWORDCHAR, c); }
|
||||
void SetPasswordChar(WPARAM c) { SendMessage(EM_SETPASSWORDCHAR, c); }
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -83,4 +83,3 @@ public:
|
||||
}}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -32,4 +32,4 @@ public:
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -40,4 +40,4 @@ public:
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -25,4 +25,4 @@ public:
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -55,4 +55,4 @@ public:
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -9,6 +9,4 @@ namespace NFile {
|
||||
namespace NMapping {
|
||||
|
||||
|
||||
|
||||
|
||||
}}}
|
||||
}}}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#ifndef _UNICODE
|
||||
extern bool g_IsNT;
|
||||
#endif _UNICODE
|
||||
#endif
|
||||
|
||||
namespace NWindows {
|
||||
|
||||
|
||||
@@ -19,4 +19,4 @@ void ProcessMessages(HWND window)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -168,7 +168,7 @@ HRESULT CPropVariant::Copy(const PROPVARIANT* pSrc)
|
||||
memmove((PROPVARIANT*)this, pSrc, sizeof(PROPVARIANT));
|
||||
return S_OK;
|
||||
}
|
||||
return ::VariantCopy((tagVARIANT *)this, (tagVARIANT *)(pSrc));
|
||||
return ::VariantCopy((tagVARIANT *)this, (tagVARIANT *)const_cast<PROPVARIANT *>(pSrc));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user