| 8 | } |
| 9 | |
| 10 | HRESULT __stdcall SecurityInfo::QueryInterface(REFIID riid, void** ppvObj) { |
| 11 | if (riid == __uuidof(ISecurityInformation) || riid == __uuidof(IUnknown)) { |
| 12 | *ppvObj = static_cast<ISecurityInformation*>(this); |
| 13 | return S_OK; |
| 14 | } |
| 15 | return E_NOINTERFACE; |
| 16 | } |
| 17 | |
| 18 | ULONG __stdcall SecurityInfo::AddRef(void) { |
| 19 | return 2; |