SetClipboardData function user32

int SetClipboardData(
  1. int uFormat,
  2. int hMem
)

Places data on the clipboard in a specified clipboard format. The window must be the current clipboard owner, and the application must have called the OpenClipboard function.

HANDLE SetClipboardData(
  UINT   uFormat,
  HANDLE hMem
);

Implementation

int SetClipboardData(int uFormat, int hMem) => _SetClipboardData(uFormat, hMem);