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 } BackgroundCopyJobImpl
;
45 /* Enum background copy jobs vtbl and related data */
48 const IEnumBackgroundCopyJobsVtbl
*lpVtbl
;
50 } EnumBackgroundCopyJobsImpl
;
52 /* Enum background copy files vtbl and related data */
55 const IEnumBackgroundCopyFilesVtbl
*lpVtbl
;
57 IBackgroundCopyFile
**files
;
60 } EnumBackgroundCopyFilesImpl
;
62 /* Background copy file vtbl and related data */
65 const IBackgroundCopyFileVtbl
*lpVtbl
;
68 struct list entryFromJob
;
69 } BackgroundCopyFileImpl
;
71 /* Background copy manager vtbl and related data */
74 const IBackgroundCopyManagerVtbl
*lpVtbl
;
76 } BackgroundCopyManagerImpl
;
80 const IClassFactoryVtbl
*lpVtbl
;
83 extern ClassFactoryImpl BITS_ClassFactory
;
85 HRESULT
BackgroundCopyManagerConstructor(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
86 HRESULT
BackgroundCopyJobConstructor(LPCWSTR displayName
, BG_JOB_TYPE type
,
87 GUID
*pJobId
, LPVOID
*ppObj
);
88 HRESULT
EnumBackgroundCopyJobsConstructor(LPVOID
*ppObj
,
89 IBackgroundCopyManager
* copyManager
);
90 HRESULT
BackgroundCopyFileConstructor(LPCWSTR remoteName
,
91 LPCWSTR localName
, LPVOID
*ppObj
);
92 HRESULT
EnumBackgroundCopyFilesConstructor(LPVOID
*ppObj
,
93 IBackgroundCopyJob
* copyJob
);
95 /* Little helper functions */
97 qmgr_strdup(const char *s
)
99 size_t n
= strlen(s
) + 1;
100 char *d
= HeapAlloc(GetProcessHeap(), 0, n
);
101 return d
? memcpy(d
, s
, n
) : NULL
;
104 #endif /* __QMGR_H__ */