2 * Queue Manager definitions
4 * Copyright 2007 Google (Roy Shea)
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.
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.
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
31 #include "wine/list.h"
33 /* Background copy job vtbl and related data */
36 const IBackgroundCopyJobVtbl *lpVtbl;
42 BG_JOB_PROGRESS jobProgress;
43 struct list entryFromQmgr;
44 } BackgroundCopyJobImpl;
46 /* Enum background copy jobs vtbl and related data */
49 const IEnumBackgroundCopyJobsVtbl *lpVtbl;
51 IBackgroundCopyJob **jobs;
54 } EnumBackgroundCopyJobsImpl;
56 /* Enum background copy files vtbl and related data */
59 const IEnumBackgroundCopyFilesVtbl *lpVtbl;
61 IBackgroundCopyFile **files;
64 } EnumBackgroundCopyFilesImpl;
66 /* Background copy file vtbl and related data */
69 const IBackgroundCopyFileVtbl *lpVtbl;
72 BG_FILE_PROGRESS fileProgress;
73 struct list entryFromJob;
74 } BackgroundCopyFileImpl;
76 /* Background copy manager vtbl and related data */
79 const IBackgroundCopyManagerVtbl *lpVtbl;
82 } BackgroundCopyManagerImpl;
86 const IClassFactoryVtbl *lpVtbl;
89 extern ClassFactoryImpl BITS_ClassFactory;
91 HRESULT BackgroundCopyManagerConstructor(IUnknown *pUnkOuter, LPVOID *ppObj);
92 HRESULT BackgroundCopyJobConstructor(LPCWSTR displayName, BG_JOB_TYPE type,
93 GUID *pJobId, LPVOID *ppObj);
94 HRESULT EnumBackgroundCopyJobsConstructor(LPVOID *ppObj,
95 IBackgroundCopyManager* copyManager);
96 HRESULT BackgroundCopyFileConstructor(LPCWSTR remoteName,
97 LPCWSTR localName, LPVOID *ppObj);
98 HRESULT EnumBackgroundCopyFilesConstructor(LPVOID *ppObj,
99 IBackgroundCopyJob* copyJob);
101 /* Little helper functions */
103 qmgr_strdup(const char *s)
105 size_t n = strlen(s) + 1;
106 char *d = HeapAlloc(GetProcessHeap(), 0, n);
107 return d ? memcpy(d, s, n) : NULL;
110 #endif /* __QMGR_H__ */