WM_DROPFILES vs IDropTarget
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I wrote a WinAPI (no MFC) app that implements IDropSource and all neccessary interfaces. I needed my app to support drag & drop. But I stuck with the WM_DROPFILES for the target, because it's way easier. But now, I'd need to accept both MOVE and COPY drops. As it seems WM_DROPFILES can't handle this (if it can, tell me!!), I'll need to do the IDropTarget interface implementation. Anybody could post some sourced to guide me? I know that I'd never write the IDropSource without the MSDN source, but I cannot find any on IDropTarget. Thanks