ReactOS 0.4.15-dev-7918-g2a2556c
factory.c
Go to the documentation of this file.
1/*
2 * Class factory interface for Queue Manager (BITS)
3 *
4 * Copyright (C) 2007 Google (Roy Shea)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#include "qmgr.h"
22#include "wine/debug.h"
23
25
26static ULONG WINAPI
28{
29 return 2; /* non-heap based object */
30}
31
32static HRESULT WINAPI
34{
36 {
38 return S_OK;
39 }
40
41 *ppvObj = NULL;
42 return E_NOINTERFACE;
43}
44
45static ULONG WINAPI
47{
48 return 1; /* non-heap based object */
49}
50
51static HRESULT WINAPI
53 void **ppvObj)
54{
56 IUnknown *punk = NULL;
57
58 TRACE("IID: %s\n", debugstr_guid(riid));
59
60 if (pUnkOuter)
62
64 if (FAILED(res))
65 return res;
66
67 res = IUnknown_QueryInterface(punk, riid, ppvObj);
68 IUnknown_Release(punk);
69 return res;
70}
71
72static HRESULT WINAPI
74{
75 FIXME("Not implemented\n");
76 return E_NOTIMPL;
77}
78
79static const IClassFactoryVtbl BITS_IClassFactory_Vtbl =
80{
86};
87
89{
91};
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
const GUID IID_IUnknown
const GUID IID_IClassFactory
#define FIXME(fmt,...)
Definition: debug.h:111
#define E_NOTIMPL
Definition: ddrawi.h:99
#define NULL
Definition: types.h:112
HRESULT BackgroundCopyManagerConstructor(LPVOID *ppObj)
Definition: qmgr.c:141
unsigned int BOOL
Definition: ntddk_ex.h:94
GLuint res
Definition: glext.h:9613
REFIID riid
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define FAILED(hr)
Definition: intsafe.h:51
#define debugstr_guid
Definition: kernel32.h:35
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define REFIID
Definition: guiddef.h:118
static HRESULT WINAPI BITS_IClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter, REFIID riid, void **ppvObj)
Definition: factory.c:52
static ULONG WINAPI BITS_IClassFactory_Release(IClassFactory *iface)
Definition: factory.c:46
static HRESULT WINAPI BITS_IClassFactory_LockServer(IClassFactory *iface, BOOL fLock)
Definition: factory.c:73
static ULONG WINAPI BITS_IClassFactory_AddRef(IClassFactory *iface)
Definition: factory.c:27
static const IClassFactoryVtbl BITS_IClassFactory_Vtbl
Definition: factory.c:79
static HRESULT WINAPI BITS_IClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppvObj)
Definition: factory.c:33
ClassFactoryImpl BITS_ClassFactory
Definition: factory.c:88
#define TRACE(s)
Definition: solgame.cpp:4
IClassFactory IClassFactory_iface
Definition: factory.c:26
uint32_t ULONG
Definition: typedefs.h:59
#define WINAPI
Definition: msvc.h:6
#define E_NOINTERFACE
Definition: winerror.h:2364
#define CLASS_E_NOAGGREGATION
Definition: winerror.h:2662