| 6 | #include "DropTarget.h" |
| 7 | |
| 8 | wil::com_ptr<DropTarget> DropTarget::Create(HWND hwnd, DropTargetInternal *dropTargetInternal) |
| 9 | { |
| 10 | wil::com_ptr<DropTarget> dropTarget; |
| 11 | dropTarget.attach(new DropTarget(hwnd, dropTargetInternal)); |
| 12 | return dropTarget; |
| 13 | } |
| 14 | |
| 15 | DropTarget::DropTarget(HWND hwnd, DropTargetInternal *dropTargetInternal) : |
| 16 | m_hwnd(hwnd), |