mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
18 lines
598 B
C
18 lines
598 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Clipboard Viewer
|
|
* FILE: base/applications/clipbrd/cliputils.h
|
|
* PURPOSE: Clipboard helper functions.
|
|
* PROGRAMMERS: Ricardo Hanke
|
|
*/
|
|
|
|
void
|
|
RetrieveClipboardFormatName(HINSTANCE hInstance,
|
|
UINT uFormat,
|
|
BOOL Unicode,
|
|
PVOID lpszFormat,
|
|
UINT cch);
|
|
|
|
void DeleteClipboardContent(void);
|
|
UINT GetAutomaticClipboardFormat(void);
|
|
BOOL IsClipboardFormatSupported(UINT uFormat);
|