blob: 8b37ba8b6c090d76578b4e2eb5ecee75d13ad1f6 [file] [log] [blame]
// Copyright © 2015, Connor Hilarides
// Licensed under the MIT License <LICENSE.md>
//! Mappings for the contents of servprov.h
pub type LPSERVICEPROVIDER = *mut IServiceProvider;
RIDL!(
interface IServiceProvider(IServiceProviderVtbl): IUnknown(IUnknownVtbl) {
fn QueryService(
&mut self, guidService: ::REFGUID, riid: ::REFIID, ppvObject: *mut *mut ::c_void
) -> ::HRESULT
}
);