I've taken a look at the TakeCmd.h file, and note the following;
Read more
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...
Read more