| 30 | }; |
| 31 | |
| 32 | HRESULT CreateDropSource(IDropSource **ppDropSource,DragType dragType) |
| 33 | { |
| 34 | if(ppDropSource == NULL) |
| 35 | { |
| 36 | return E_FAIL; |
| 37 | } |
| 38 | |
| 39 | *ppDropSource = new DropSource(dragType); |
| 40 | |
| 41 | return S_OK; |
| 42 | } |
| 43 | |
| 44 | DropSource::DropSource(DragType dragType) |
| 45 | { |
no outgoing calls
no test coverage detected