mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
9.06 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
829409452d
commit
c99f3ebdd6
@@ -9,12 +9,12 @@
|
||||
#include "Common/MyString.h"
|
||||
#include "Windows/Defs.h"
|
||||
|
||||
|
||||
namespace NWindows{
|
||||
namespace NShell{
|
||||
|
||||
/////////////////////////
|
||||
// CItemIDList
|
||||
#ifndef UNDER_CE
|
||||
|
||||
class CItemIDList
|
||||
{
|
||||
@@ -55,9 +55,9 @@ class CDrop
|
||||
bool m_Assigned;
|
||||
void Free();
|
||||
public:
|
||||
CDrop(bool mustBeFinished) : m_MustBeFinished(mustBeFinished),
|
||||
m_Assigned(false) {}
|
||||
~CDrop();
|
||||
CDrop(bool mustBeFinished) : m_MustBeFinished(mustBeFinished), m_Assigned(false) {}
|
||||
~CDrop() { Free(); }
|
||||
|
||||
void Attach(HDROP object);
|
||||
operator HDROP() { return m_Object;}
|
||||
bool QueryPoint(LPPOINT point)
|
||||
@@ -74,6 +74,8 @@ public:
|
||||
void QueryFileNames(UStringVector &fileNames);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
/////////////////////////////
|
||||
// Functions
|
||||
|
||||
@@ -88,5 +90,4 @@ bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR initialFolder, UString &
|
||||
#endif
|
||||
}}
|
||||
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user