Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenservprov.idl
Go to the documentation of this file.
00001 /* 00002 * Copyright (C) 1999 Francois Gouget 00003 * Copyright (C) 2003 Alexandre Julliard 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the Free Software 00017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00018 */ 00019 00020 import "objidl.idl"; 00021 00022 00023 /***************************************************************************** 00024 * IServiceProvider interface 00025 */ 00026 [ 00027 object, 00028 uuid(6d5140c1-7436-11ce-8034-00aa006009fa), 00029 pointer_default(unique) 00030 ] 00031 interface IServiceProvider : IUnknown 00032 { 00033 typedef [unique] IServiceProvider *LPSERVICEPROVIDER; 00034 00035 [local] 00036 HRESULT QueryService( 00037 [in] REFGUID guidService, 00038 [in] REFIID riid, 00039 [out] void ** ppvObject); 00040 00041 [call_as(QueryService)] 00042 HRESULT RemoteQueryService( 00043 [in] REFGUID guidService, 00044 [in] REFIID riid, 00045 [out, iid_is(riid)] IUnknown ** ppvObject); 00046 } Generated on Mon May 28 2012 04:32:09 for ReactOS by
1.7.6.1
|