wined3d: Implement a different constant dirtification algorithm.
[wine] / dlls / qmgr / qmgr.h
1 /*
2  * Queue Manager definitions
3  *
4  * Copyright 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 #ifndef __QMGR_H__
22 #define __QMGR_H__
23
24 #include "windef.h"
25 #include "objbase.h"
26
27 #define COBJMACROS
28 #include "bits.h"
29
30 #include <string.h>
31 #include "wine/list.h"
32
33 /* Background copy job vtbl and related data */
34 typedef struct
35 {
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     struct list entryFromQmgr;
44 } BackgroundCopyJobImpl;
45
46 /* Enum background copy jobs vtbl and related data */
47 typedef struct
48 {
49     const IEnumBackgroundCopyJobsVtbl *lpVtbl;
50     LONG ref;
51     IBackgroundCopyJob **jobs;
52     ULONG numJobs;
53     ULONG indexJobs;
54 } EnumBackgroundCopyJobsImpl;
55
56 /* Enum background copy files vtbl and related data */
57 typedef struct
58 {
59     const IEnumBackgroundCopyFilesVtbl *lpVtbl;
60     LONG ref;
61     IBackgroundCopyFile **files;
62     ULONG numFiles;
63     ULONG indexFiles;
64 } EnumBackgroundCopyFilesImpl;
65
66 /* Background copy file vtbl and related data */
67 typedef struct
68 {
69     const IBackgroundCopyFileVtbl *lpVtbl;
70     LONG ref;
71     BG_FILE_INFO info;
72     BG_FILE_PROGRESS fileProgress;
73     struct list entryFromJob;
74 } BackgroundCopyFileImpl;
75
76 /* Background copy manager vtbl and related data */
77 typedef struct
78 {
79     const IBackgroundCopyManagerVtbl *lpVtbl;
80     LONG ref;
81     struct list jobs;
82 } BackgroundCopyManagerImpl;
83
84 typedef struct
85 {
86     const IClassFactoryVtbl *lpVtbl;
87 } ClassFactoryImpl;
88
89 extern ClassFactoryImpl BITS_ClassFactory;
90
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);
100
101 /* Little helper functions */
102 static inline char *
103 qmgr_strdup(const char *s)
104 {
105     size_t n = strlen(s) + 1;
106     char *d = HeapAlloc(GetProcessHeap(), 0, n);
107     return d ? memcpy(d, s, n) : NULL;
108 }
109
110 #endif /* __QMGR_H__ */