d3dx9: Use lowercase hexadecimal values.
[wine.git] / dlls / qmgr / qmgr.h
blob93fcd0e450e956181fba19db7969721222ca9a4b
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 "bits1_5.h"
30 #include <string.h>
31 #include "wine/list.h"
33 /* Background copy job vtbl and related data */
34 typedef struct
36 const IBackgroundCopyJob2Vtbl *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 BG_JOB_STATE state;
44 /* Protects file list, and progress */
45 CRITICAL_SECTION cs;
46 struct list entryFromQmgr;
47 } BackgroundCopyJobImpl;
49 /* Background copy file vtbl and related data */
50 typedef struct
52 const IBackgroundCopyFileVtbl *lpVtbl;
53 LONG ref;
54 BG_FILE_INFO info;
55 BG_FILE_PROGRESS fileProgress;
56 WCHAR tempFileName[MAX_PATH];
57 struct list entryFromJob;
58 BackgroundCopyJobImpl *owner;
59 } BackgroundCopyFileImpl;
61 /* Background copy manager vtbl and related data */
62 typedef struct
64 IBackgroundCopyManager IBackgroundCopyManager_iface;
65 /* Protects job list, job states, and jobEvent */
66 CRITICAL_SECTION cs;
67 HANDLE jobEvent;
68 struct list jobs;
69 } BackgroundCopyManagerImpl;
71 typedef struct
73 IClassFactory IClassFactory_iface;
74 } ClassFactoryImpl;
76 extern HANDLE stop_event DECLSPEC_HIDDEN;
77 extern ClassFactoryImpl BITS_ClassFactory DECLSPEC_HIDDEN;
78 extern BackgroundCopyManagerImpl globalMgr DECLSPEC_HIDDEN;
80 HRESULT BackgroundCopyManagerConstructor(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
81 HRESULT BackgroundCopyJobConstructor(LPCWSTR displayName, BG_JOB_TYPE type,
82 GUID *pJobId, LPVOID *ppObj) DECLSPEC_HIDDEN;
83 HRESULT enum_copy_job_create(BackgroundCopyManagerImpl *qmgr,
84 IEnumBackgroundCopyJobs **enumjob) DECLSPEC_HIDDEN;
85 HRESULT BackgroundCopyFileConstructor(BackgroundCopyJobImpl *owner,
86 LPCWSTR remoteName, LPCWSTR localName,
87 LPVOID *ppObj) DECLSPEC_HIDDEN;
88 HRESULT EnumBackgroundCopyFilesConstructor(LPVOID *ppObj,
89 IBackgroundCopyJob2 *copyJob) DECLSPEC_HIDDEN;
90 DWORD WINAPI fileTransfer(void *param) DECLSPEC_HIDDEN;
91 void processJob(BackgroundCopyJobImpl *job) DECLSPEC_HIDDEN;
92 BOOL processFile(BackgroundCopyFileImpl *file, BackgroundCopyJobImpl *job) DECLSPEC_HIDDEN;
94 /* Little helper functions */
95 static inline char *
96 qmgr_strdup(const char *s)
98 size_t n = strlen(s) + 1;
99 char *d = HeapAlloc(GetProcessHeap(), 0, n);
100 return d ? memcpy(d, s, n) : NULL;
103 static inline BOOL
104 transitionJobState(BackgroundCopyJobImpl *job, BG_JOB_STATE fromState,
105 BG_JOB_STATE toState)
107 BOOL rv = FALSE;
108 EnterCriticalSection(&globalMgr.cs);
109 if (job->state == fromState)
111 job->state = toState;
112 rv = TRUE;
114 LeaveCriticalSection(&globalMgr.cs);
115 return rv;
118 #endif /* __QMGR_H__ */