| 116 | } |
| 117 | |
| 118 | STDMETHODIMP_(ULONG) CProgressBarControl::Release(void) { |
| 119 | ULONG count = InterlockedDecrement(&m_refCount); |
| 120 | if (count == 0) { |
| 121 | InterlockedDecrement(&g_serverLocks); |
| 122 | this->~CProgressBarControl(); |
| 123 | CoTaskMemFree(this); |
| 124 | } |
| 125 | return count; |
| 126 | } |
| 127 | |
| 128 | #pragma mark - IOleObject |
| 129 |
no test coverage detected