mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
20 lines
268 B
C
20 lines
268 B
C
|
#ifndef __TNCLIP_H
|
||
|
#define __TNCLIP_H
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include "tnetwork.h"
|
||
|
|
||
|
class Tnclip {
|
||
|
private:
|
||
|
HWND Window;
|
||
|
TNetwork &Network;
|
||
|
|
||
|
public:
|
||
|
Tnclip(HWND Window, TNetwork &RefNetwork);
|
||
|
~Tnclip();
|
||
|
|
||
|
void Copy(HGLOBAL clipboard_data);
|
||
|
void Paste();
|
||
|
};
|
||
|
|
||
|
#endif
|