2003-05-12 Mattia Barbon <mbarbon@dsi.unive.it>
* include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes. * include/winbase.h (TerminateJobObject, AssignProcessToJobObject): Likewise. * include/servprov.h: New header. * lib/test.c: Include servprov.h. Correct ChangeLog typo
This commit is contained in:
26
winsup/w32api/include/servprov.h
Normal file
26
winsup/w32api/include/servprov.h
Normal file
@ -0,0 +1,26 @@
|
||||
#ifndef _SERVPROV_H
|
||||
#define _SERVPROV_H
|
||||
#define _OLEIDL_H
|
||||
#if __GNUC__ >=3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
EXTERN_C const IID IID_IServiceProvider;
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IServiceProvider
|
||||
DECLARE_INTERFACE_(IServiceProvider,IUnknown)
|
||||
{
|
||||
STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE;
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
STDMETHOD(QueryService)(THIS_ REFGUID,REFIID,void**) PURE;
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Reference in New Issue
Block a user