| 83 | // Expose our IPropertyPage interface |
| 84 | |
| 85 | STDMETHODIMP |
| 86 | CBasePropertyPage::NonDelegatingQueryInterface(REFIID riid, __deref_out void **ppv) |
| 87 | { |
| 88 | if (riid == IID_IPropertyPage) |
| 89 | { |
| 90 | return GetInterface((IPropertyPage *)this, ppv); |
| 91 | } |
| 92 | else |
| 93 | { |
| 94 | return CUnknown::NonDelegatingQueryInterface(riid, ppv); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // Get the page info so that the page site can size itself |
| 99 |
no test coverage detected