1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

shell32: Remove useless and commented out code.

This commit is contained in:
Zebediah Figura 2024-03-03 17:18:03 -06:00 committed by Alexandre Julliard
parent 08219c02b3
commit 0bc47920d3

View file

@ -1341,30 +1341,6 @@ static HRESULT DoPaste(ContextMenu *This)
IDataObject_Release(pda);
}
#if 0
HGLOBAL hMem;
OpenClipboard(NULL);
hMem = GetClipboardData(CF_HDROP);
if(hMem)
{
char * pDropFiles = GlobalLock(hMem);
if(pDropFiles)
{
int len, offset = sizeof(DROPFILESTRUCT);
while( pDropFiles[offset] != 0)
{
len = strlen(pDropFiles + offset);
TRACE("%s\n", pDropFiles + offset);
offset += len+1;
}
}
GlobalUnlock(hMem);
}
CloseClipboard();
#endif
return hr;
}