mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 07:14:56 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
8
CPP/Windows/Clipboard.h
Executable file → Normal file
8
CPP/Windows/Clipboard.h
Executable file → Normal file
@@ -3,7 +3,7 @@
|
||||
#ifndef __CLIPBOARD_H
|
||||
#define __CLIPBOARD_H
|
||||
|
||||
#include "Common/MyString.h"
|
||||
#include "../Common/MyString.h"
|
||||
|
||||
namespace NWindows {
|
||||
|
||||
@@ -12,9 +12,9 @@ class CClipboard
|
||||
bool m_Open;
|
||||
public:
|
||||
CClipboard(): m_Open(false) {};
|
||||
~CClipboard();
|
||||
bool Open(HWND wndNewOwner);
|
||||
bool Close();
|
||||
~CClipboard() { Close(); }
|
||||
bool Open(HWND wndNewOwner) throw();
|
||||
bool Close() throw();
|
||||
};
|
||||
|
||||
bool ClipboardIsFormatAvailableHDROP();
|
||||
|
||||
Reference in New Issue
Block a user