GetClipboardFormatName function user32
Retrieves from the clipboard the name of the specified registered format. The function copies the name to the specified buffer.
int GetClipboardFormatNameW(
UINT format,
LPWSTR lpszFormatName,
int cchMaxCount
);
Implementation
int GetClipboardFormatName(
int format, Pointer<Utf16> lpszFormatName, int cchMaxCount) =>
_GetClipboardFormatName(format, lpszFormatName, cchMaxCount);