qmgr: Implement IBackgroundCopyFile_GetProgress.
[wine.git] / dlls / qmgr / qmgr.h
blobddf9eeeae53493df74f1a7b18e6ff15da07e2dc3
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 BG_FILE_PROGRESS fileProgress;
69 struct list entryFromJob;
70 } BackgroundCopyFileImpl;
72 /* Background copy manager vtbl and related data */
73 typedef struct
75 const IBackgroundCopyManagerVtbl *lpVtbl;
76 LONG ref;
77 } BackgroundCopyManagerImpl;
79 typedef struct
81 const IClassFactoryVtbl *lpVtbl;
82 } ClassFactoryImpl;
84 extern ClassFactoryImpl BITS_ClassFactory;
86 HRESULT BackgroundCopyManagerConstructor(IUnknown *pUnkOuter, LPVOID *ppObj);
87 HRESULT BackgroundCopyJobConstructor(LPCWSTR displayName, BG_JOB_TYPE type,
88 GUID *pJobId, LPVOID *ppObj);
89 HRESULT EnumBackgroundCopyJobsConstructor(LPVOID *ppObj,
90 IBackgroundCopyManager* copyManager);
91 HRESULT BackgroundCopyFileConstructor(LPCWSTR remoteName,
92 LPCWSTR localName, LPVOID *ppObj);
93 HRESULT EnumBackgroundCopyFilesConstructor(LPVOID *ppObj,
94 IBackgroundCopyJob* copyJob);
96 /* Little helper functions */
97 static inline char *
98 qmgr_strdup(const char *s)
100 size_t n = strlen(s) + 1;
101 char *d = HeapAlloc(GetProcessHeap(), 0, n);
102 return d ? memcpy(d, s, n) : NULL;
105 #endif /* __QMGR_H__ */