Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: iNsaNe on October 01, 2009, 11:34 PM

Title: Clipboard copying and GlobalAlloc/Free
Post by: iNsaNe on October 01, 2009, 11:34 PM
I have a program where the user can copy text to the clipboard by clicking a drop down menu item.

My question is, does a call to EmptyClipboard free the data previously allocated with the call to GlobalAlloc? Or do i need to free the data with GlobalFree? I dont want to create memory leaks.

this is my code


        ...
BYTE size = strPath.size() + 1;
char *pText = (char *)GlobalAlloc(GMEM_FIXED, size);

strcpy(pText, strPath.c_str());
OpenClipboard(hWnd);
EmptyClipboard();
SetClipboardData(CF_TEXT, pText);
CloseClipboard();
        ...
Title: Re: Clipboard copying and GlobalAlloc/Free
Post by: MyndFyre on October 04, 2009, 04:57 AM
Based on the MSDN article (http://msdn.microsoft.com/en-us/library/ms649013(VS.85).aspx), it would seem to be dependent on the clipboard format chosen.

For CF_TEXT, yes, it should be freed.