| 142 | } |
| 143 | |
| 144 | STDMETHODIMP CTabbedMDIChildModifiedList::get_Count(long* count) |
| 145 | { |
| 146 | if(count == NULL) |
| 147 | { |
| 148 | return E_POINTER; |
| 149 | } |
| 150 | *count = (long)this->GetCount(); |
| 151 | return S_OK; |
| 152 | } |
| 153 | |
| 154 | STDMETHODIMP CTabbedMDIChildModifiedList::AddNew( |
| 155 | const wchar_t* name, const wchar_t* displayName, const wchar_t* description, |
no test coverage detected