mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 11:14:58 -06:00
4.54 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
051769bbc5
commit
b82f80647d
28
CPP/Windows/Clipboard.h
Executable file
28
CPP/Windows/Clipboard.h
Executable file
@@ -0,0 +1,28 @@
|
||||
// Windows/Clipboard.h
|
||||
|
||||
#ifndef __CLIPBOARD_H
|
||||
#define __CLIPBOARD_H
|
||||
|
||||
#include "Common/MyString.h"
|
||||
|
||||
namespace NWindows {
|
||||
|
||||
class CClipboard
|
||||
{
|
||||
bool m_Open;
|
||||
public:
|
||||
CClipboard(): m_Open(false) {};
|
||||
~CClipboard();
|
||||
bool Open(HWND wndNewOwner);
|
||||
bool Close();
|
||||
};
|
||||
|
||||
bool ClipboardIsFormatAvailableHDROP();
|
||||
|
||||
// bool ClipboardGetFileNames(UStringVector &names);
|
||||
// bool ClipboardGetTextString(AString &s);
|
||||
bool ClipboardSetText(HWND owner, const UString &s);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user