qmgr: Implement IEnumBackgroundCopyFiles_Next.
[wine.git] / dlls / qmgr / qmgr.h
blob3036f7a2d2952c6057a41cb982d7cea20e5a120b
1 /*
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
21 #ifndef __QMGR_H__
22 #define __QMGR_H__
24 #include "windef.h"
25 #include "objbase.h"
27 #define COBJMACROS
28 #include "bits.h"
30 #include <string.h>
31 #include "wine/list.h"
33 /* Background copy job vtbl and related data */
34 typedef struct
36 const IBackgroundCopyJobVtbl *lpVtbl;
37 LONG ref;
38 LPWSTR displayName;
39 BG_JOB_TYPE type;
40 GUID jobId;
41 struct list files;
42 BG_JOB_PROGRESS jobProgress;
43 } BackgroundCopyJobImpl;
45 /* Enum background copy jobs vtbl and related data */
46 typedef struct
48 const IEnumBackgroundCopyJobsVtbl *lpVtbl;
49 LONG ref;
50 } EnumBackgroundCopyJobsImpl;
52 /* Enum background copy files vtbl and related data */
53 typedef struct
55 const IEnumBackgroundCopyFilesVtbl *lpVtbl;
56 LONG ref;
57 IBackgroundCopyFile **files;
58 ULONG numFiles;
59 ULONG indexFiles;
60 } EnumBackgroundCopyFilesImpl;
62 /* Background copy file vtbl and related data */
63 typedef struct
65 const IBackgroundCopyFileVtbl *lpVtbl;
66 LONG ref;
67 BG_FILE_INFO info;
68 struct list entryFromJob;
69 } BackgroundCopyFileImpl;
71 /* Background copy manager vtbl and related data */
72 typedef struct
74 const IBackgroundCopyManagerVtbl *lpVtbl;
75 LONG ref;
76 } BackgroundCopyManagerImpl;
78 typedef struct
80 const IClassFactoryVtbl *lpVtbl;
81 } ClassFactoryImpl;
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 */
96 static inline char *
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__ */