| 16 | } |
| 17 | |
| 18 | STDMETHODIMP GetColorSet(DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hicTargetDev, LOGPALETTE **ppColorSet) { |
| 19 | if (ppColorSet == NULL) { |
| 20 | return E_POINTER; |
| 21 | } |
| 22 | *ppColorSet = NULL; |
| 23 | return S_FALSE; |
| 24 | } |
| 25 | |
| 26 | STDMETHODIMP Freeze(DWORD dwDrawAspect, LONG lindex, void *pvAspect, DWORD *pdwFreeze) { |
| 27 | return E_NOTIMPL; |
nothing calls this directly
no outgoing calls
no test coverage detected