mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
81 lines
1.6 KiB
C
81 lines
1.6 KiB
C
/*
|
|
ReactOS Kernel-Mode COM
|
|
by Andrew Greenwood
|
|
|
|
Please see COPYING in the top-level directory for license information.
|
|
*/
|
|
|
|
#ifndef _UNKNOWN_H_
|
|
#define _UNKNOWN_H_
|
|
|
|
#include <windef.h>
|
|
#define COM_NO_WINDOWS_H
|
|
#include <basetyps.h>
|
|
|
|
#ifdef PUT_GUIDS_HERE
|
|
#include <initguid.h>
|
|
#endif
|
|
|
|
|
|
/* ===============================================================
|
|
IUnknown
|
|
*/
|
|
|
|
#ifndef __IUnknown_INTERFACE_DEFINED__
|
|
#define __IUnknown_INTERFACE_DEFINED__
|
|
DEFINE_GUID(
|
|
IID_IUnknown,
|
|
0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x46);
|
|
|
|
#undef INTERFACE
|
|
#define INTERFACE IUnknown
|
|
|
|
DECLARE_INTERFACE(IUnknown)
|
|
{
|
|
STDMETHOD_(NTSTATUS, QueryInterface)( THIS_
|
|
IN REFIID,
|
|
OUT PVOID*)
|
|
PURE;
|
|
|
|
STDMETHOD_(ULONG, AddRef)( THIS )
|
|
PURE;
|
|
|
|
STDMETHOD_(ULONG, Release)( THIS )
|
|
PURE;
|
|
};
|
|
#endif
|
|
|
|
#undef INTERFACE
|
|
|
|
typedef IUnknown *PUNKNOWN;
|
|
|
|
|
|
/* ===============================================================
|
|
IUnknown definition
|
|
Boilerplate code macro for use in subclassed interfaces
|
|
*/
|
|
|
|
#define DEFINE_ABSTRACT_UNKNOWN() \
|
|
STDMETHOD_(NTSTATUS, QueryInterface)( THIS_ \
|
|
REFIID InterfaceId, \
|
|
PVOID* Interface) \
|
|
PURE; \
|
|
\
|
|
STDMETHOD_(ULONG, AddRef)(THIS) \
|
|
PURE; \
|
|
\
|
|
STDMETHOD_(ULONG, Release)(THIS) \
|
|
PURE;
|
|
|
|
|
|
/* ===============================================================
|
|
Constructor callback definition
|
|
*/
|
|
|
|
typedef HRESULT (*PFNCREATEINSTANCE)(
|
|
OUT PUNKNOWN* Unknown,
|
|
IN REFCLSID ClassId,
|
|
IN PUNKNOWN OuterUnknown,
|
|
IN POOL_TYPE PoolType);
|
|
|
|
#endif
|