Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Copy to clipboard 1 to 9 via Plugin

Aug
1,917
68
I've taken a look at the TakeCmd.h file, and note the following;
Code:
/********************************************************************
 *
 * Clipboard functions
 *
 ********************************************************************/
 
int WINAPI CopyToClipboard( HANDLE nFile );
/*
    Copy the file referenced by the Windows file handle "nFile" to the clipboard
*/
    
int WINAPI CopyTextToClipboard( LPCTSTR pszText, int nLength );
/*
    Copy text (of length "nLength") to the clipboard
*/
    
int WINAPI CopyFromClipboard( LPCTSTR pszFileName );
/*
    Copy the clipboard to the specified filename.
*/
     
int WINAPI WindowToClipboard( HWND hWnd, BOOL fFullWindow );
/*
    Copy a window as a .BMP to the clipboard.
        
        hWnd - window to copy
        fFullWindow - if 0, copy client area only.  if 1, copy entire window
*/

As TCC29 now supports multiple clipboards, how does one read/write to these clipboards via a plugin?

Joe
 
Back
Top