| 77 | } |
| 78 | |
| 79 | bool IsDropFormatAvailable(IDataObject *dataObject, const FORMATETC &formatEtc) |
| 80 | { |
| 81 | FORMATETC formatEtcCopy = formatEtc; |
| 82 | HRESULT hr = dataObject->QueryGetData(&formatEtcCopy); |
| 83 | return (hr == S_OK); |
| 84 | } |
| 85 | |
| 86 | FORMATETC GetDroppedFilesFormatEtc() |
| 87 | { |
no test coverage detected