| 93 | } |
| 94 | |
| 95 | STDMETHODIMP GetUserClassID(CLSID *pClsid) { |
| 96 | if (pClsid == NULL) { |
| 97 | return E_POINTER; |
| 98 | } |
| 99 | *pClsid = __uuidof(TImpl); |
| 100 | return S_OK; |
| 101 | } |
| 102 | |
| 103 | STDMETHODIMP GetUserType(DWORD dwFormOfType, LPOLESTR *pszUserType) { |
| 104 | if (pszUserType == NULL) { |
nothing calls this directly
no outgoing calls
no test coverage detected