38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#include <Windows.h>
|
|
#include <iostream>
|
|
#include "clipboard.hpp"
|
|
|
|
bool put_data_on_clipboard(const char* text) {
|
|
int len = strlen(text);
|
|
if (strnlen_s(text, 20) == 0) {
|
|
std::cerr << "Text is empty" << std::endl;
|
|
return false;
|
|
}
|
|
// Open the clipboard
|
|
if (!OpenClipboard(nullptr)) {
|
|
std::cerr << "Failed to open clipboard" << std::endl;
|
|
return false;
|
|
}
|
|
// Allocate global memory for the text
|
|
HGLOBAL hMem = GlobalAlloc(GMEM_MOVEABLE, strlen(text) + 1);
|
|
if (!hMem) {
|
|
CloseClipboard();
|
|
std::cerr << "Failed to allocate memory for text" << std::endl;
|
|
return false;
|
|
}
|
|
// Copy the text to the allocated memory
|
|
char* memData = static_cast<char*>(GlobalLock(hMem));
|
|
if (!memData) {
|
|
CloseClipboard();
|
|
std::cerr << "Failed to lock memory for text" << std::endl;
|
|
return false;
|
|
}
|
|
strcpy_s(memData, strlen(text) + 1, text);
|
|
GlobalUnlock(hMem);
|
|
// Set the data to the clipboard
|
|
EmptyClipboard();
|
|
SetClipboardData(CF_TEXT, hMem);
|
|
// Clean up and close the clipboard
|
|
CloseClipboard();
|
|
return true;
|
|
} |