Jump to content

WinCloseClipbrd

From EDM2
Revision as of 20:49, 21 November 2023 by Ak120 (talk | contribs)

This function closes the clipboard, allowing other applications to open it with the WinOpenClipbrd function.

Syntax

WinCloseClipbrd(hab)

Parameters

hab (HAB) - input
Anchor-block handle.

Returns

rc (BOOL) - returns
Success indicator.
TRUE :Successful completion
FALSE :Error occurred.

Remarks

This function causes the contents of the clipboard to be drawn in the clipboard viewer window (if any), by sending it a WM_DRAWCLIPBOARD message. This action occurs only if the clipboard data has changed.

The clipboard must be open before this function is invoked.

Example Code

This example closes the clipboard, previously opened by WinOpenClipbrd, to allow other applications to open it for use.

#define INCL_WINCLIPBOARD       /* Window Clipboard Functions   */
#include <os2.h>

BOOL  fSuccess;         /* success indicator                    */
HAB   hab;              /* anchor-block handle                  */

fSuccess = WinCloseClipbrd(hab);

Related Functions

  • WinEmptyClipbrd
  • WinEnumClipbrdFmts
  • WinOpenClipbrd
  • WinQueryClipbrdData
  • WinQueryClipbrdFmtInfo
  • WinQueryClipbrdOwner
  • WinQueryClipbrdViewer
  • WinSetClipbrdData
  • WinSetClipbrdOwner
  • WinSetClipbrdViewer

Related Messages

  • WM_DRAWCLIPBOARD