| 71 | |
| 72 | STDMETHODIMP_(ULONG) |
| 73 | DIFF_EXT::Release() |
| 74 | { |
| 75 | ULONG ret = 0L; |
| 76 | |
| 77 | if(InterlockedDecrement((LPLONG)&_ref_count) != 0) |
| 78 | { |
| 79 | ret = _ref_count; |
| 80 | } |
| 81 | else |
| 82 | { |
| 83 | delete this; |
| 84 | } |
| 85 | |
| 86 | return ret; |
| 87 | } |
| 88 | |
| 89 | STDMETHODIMP |
| 90 | DIFF_EXT::Initialize(LPCITEMIDLIST /*folder not used*/, IDataObject* data, HKEY /*key not used*/) |
nothing calls this directly
no outgoing calls
no test coverage detected