Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
13de3b2e
Commit
13de3b2e
authored
Feb 17, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5e4fb4b5
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
37 additions
and
38 deletions
+37
-38
Makefile.in
dlls/qmgr/Makefile.in
+0
-1
enum_files.c
dlls/qmgr/enum_files.c
+4
-4
enum_jobs.c
dlls/qmgr/enum_jobs.c
+4
-4
file.c
dlls/qmgr/file.c
+7
-7
job.c
dlls/qmgr/job.c
+17
-17
qmgr.c
dlls/qmgr/qmgr.c
+2
-2
service.c
dlls/qmgr/service.c
+3
-3
No files found.
dlls/qmgr/Makefile.in
View file @
13de3b2e
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
qmgr.dll
MODULE
=
qmgr.dll
IMPORTS
=
uuid winhttp ole32 advapi32
IMPORTS
=
uuid winhttp ole32 advapi32
...
...
dlls/qmgr/enum_files.c
View file @
13de3b2e
...
@@ -60,7 +60,7 @@ static ULONG WINAPI EnumBackgroundCopyFiles_AddRef(IEnumBackgroundCopyFiles *ifa
...
@@ -60,7 +60,7 @@ static ULONG WINAPI EnumBackgroundCopyFiles_AddRef(IEnumBackgroundCopyFiles *ifa
EnumBackgroundCopyFilesImpl
*
This
=
impl_from_IEnumBackgroundCopyFiles
(
iface
);
EnumBackgroundCopyFilesImpl
*
This
=
impl_from_IEnumBackgroundCopyFiles
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
ref
);
return
ref
;
return
ref
;
}
}
...
@@ -70,7 +70,7 @@ static ULONG WINAPI EnumBackgroundCopyFiles_Release(IEnumBackgroundCopyFiles *if
...
@@ -70,7 +70,7 @@ static ULONG WINAPI EnumBackgroundCopyFiles_Release(IEnumBackgroundCopyFiles *if
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
i
;
ULONG
i
;
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
if
(
ref
==
0
)
{
{
...
@@ -92,7 +92,7 @@ static HRESULT WINAPI EnumBackgroundCopyFiles_Next(IEnumBackgroundCopyFiles *ifa
...
@@ -92,7 +92,7 @@ static HRESULT WINAPI EnumBackgroundCopyFiles_Next(IEnumBackgroundCopyFiles *ifa
ULONG
i
;
ULONG
i
;
IBackgroundCopyFile2
*
file
;
IBackgroundCopyFile2
*
file
;
TRACE
(
"(%p)->(%d %p %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
TRACE
(
"(%p)->(%
l
d %p %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
/* Despite documented behavior, Windows (tested on XP) is not verifying
/* Despite documented behavior, Windows (tested on XP) is not verifying
that the caller set pceltFetched to zero. No check here. */
that the caller set pceltFetched to zero. No check here. */
...
@@ -129,7 +129,7 @@ static HRESULT WINAPI EnumBackgroundCopyFiles_Skip(IEnumBackgroundCopyFiles *ifa
...
@@ -129,7 +129,7 @@ static HRESULT WINAPI EnumBackgroundCopyFiles_Skip(IEnumBackgroundCopyFiles *ifa
{
{
EnumBackgroundCopyFilesImpl
*
This
=
impl_from_IEnumBackgroundCopyFiles
(
iface
);
EnumBackgroundCopyFilesImpl
*
This
=
impl_from_IEnumBackgroundCopyFiles
(
iface
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
celt
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
celt
);
if
(
celt
>
This
->
numFiles
-
This
->
indexFiles
)
if
(
celt
>
This
->
numFiles
-
This
->
indexFiles
)
{
{
...
...
dlls/qmgr/enum_jobs.c
View file @
13de3b2e
...
@@ -60,7 +60,7 @@ static ULONG WINAPI EnumBackgroundCopyJobs_AddRef(IEnumBackgroundCopyJobs *iface
...
@@ -60,7 +60,7 @@ static ULONG WINAPI EnumBackgroundCopyJobs_AddRef(IEnumBackgroundCopyJobs *iface
EnumBackgroundCopyJobsImpl
*
This
=
impl_from_IEnumBackgroundCopyJobs
(
iface
);
EnumBackgroundCopyJobsImpl
*
This
=
impl_from_IEnumBackgroundCopyJobs
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
ref
);
return
ref
;
return
ref
;
}
}
...
@@ -71,7 +71,7 @@ static ULONG WINAPI EnumBackgroundCopyJobs_Release(IEnumBackgroundCopyJobs *ifac
...
@@ -71,7 +71,7 @@ static ULONG WINAPI EnumBackgroundCopyJobs_Release(IEnumBackgroundCopyJobs *ifac
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
i
;
ULONG
i
;
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
if
(
ref
==
0
)
{
for
(
i
=
0
;
i
<
This
->
numJobs
;
i
++
)
for
(
i
=
0
;
i
<
This
->
numJobs
;
i
++
)
...
@@ -90,7 +90,7 @@ static HRESULT WINAPI EnumBackgroundCopyJobs_Next(IEnumBackgroundCopyJobs *iface
...
@@ -90,7 +90,7 @@ static HRESULT WINAPI EnumBackgroundCopyJobs_Next(IEnumBackgroundCopyJobs *iface
ULONG
fetched
;
ULONG
fetched
;
ULONG
i
;
ULONG
i
;
TRACE
(
"(%p)->(%d %p %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
TRACE
(
"(%p)->(%
l
d %p %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
fetched
=
min
(
celt
,
This
->
numJobs
-
This
->
indexJobs
);
fetched
=
min
(
celt
,
This
->
numJobs
-
This
->
indexJobs
);
if
(
pceltFetched
)
if
(
pceltFetched
)
...
@@ -121,7 +121,7 @@ static HRESULT WINAPI EnumBackgroundCopyJobs_Skip(IEnumBackgroundCopyJobs *iface
...
@@ -121,7 +121,7 @@ static HRESULT WINAPI EnumBackgroundCopyJobs_Skip(IEnumBackgroundCopyJobs *iface
{
{
EnumBackgroundCopyJobsImpl
*
This
=
impl_from_IEnumBackgroundCopyJobs
(
iface
);
EnumBackgroundCopyJobsImpl
*
This
=
impl_from_IEnumBackgroundCopyJobs
(
iface
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
celt
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
celt
);
if
(
This
->
numJobs
-
This
->
indexJobs
<
celt
)
if
(
This
->
numJobs
-
This
->
indexJobs
<
celt
)
{
{
...
...
dlls/qmgr/file.c
View file @
13de3b2e
...
@@ -67,7 +67,7 @@ static ULONG WINAPI BackgroundCopyFile_AddRef(
...
@@ -67,7 +67,7 @@ static ULONG WINAPI BackgroundCopyFile_AddRef(
{
{
BackgroundCopyFileImpl
*
file
=
impl_from_IBackgroundCopyFile2
(
iface
);
BackgroundCopyFileImpl
*
file
=
impl_from_IBackgroundCopyFile2
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
file
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
file
->
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
file
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
file
,
ref
);
return
ref
;
return
ref
;
}
}
...
@@ -77,7 +77,7 @@ static ULONG WINAPI BackgroundCopyFile_Release(
...
@@ -77,7 +77,7 @@ static ULONG WINAPI BackgroundCopyFile_Release(
BackgroundCopyFileImpl
*
file
=
impl_from_IBackgroundCopyFile2
(
iface
);
BackgroundCopyFileImpl
*
file
=
impl_from_IBackgroundCopyFile2
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
file
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
file
->
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
file
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
file
,
ref
);
if
(
ref
==
0
)
if
(
ref
==
0
)
{
{
...
@@ -216,7 +216,7 @@ static HRESULT hresult_from_http_response(DWORD code)
...
@@ -216,7 +216,7 @@ static HRESULT hresult_from_http_response(DWORD code)
case
504
:
return
BG_E_HTTP_ERROR_504
;
case
504
:
return
BG_E_HTTP_ERROR_504
;
case
505
:
return
BG_E_HTTP_ERROR_505
;
case
505
:
return
BG_E_HTTP_ERROR_505
;
default:
default:
FIXME
(
"unhandled response code %u
\n
"
,
code
);
FIXME
(
"unhandled response code %
l
u
\n
"
,
code
);
return
S_OK
;
return
S_OK
;
}
}
}
}
...
@@ -227,7 +227,7 @@ static void CALLBACK progress_callback_http(HINTERNET handle, DWORD_PTR context,
...
@@ -227,7 +227,7 @@ static void CALLBACK progress_callback_http(HINTERNET handle, DWORD_PTR context,
BackgroundCopyFileImpl
*
file
=
(
BackgroundCopyFileImpl
*
)
context
;
BackgroundCopyFileImpl
*
file
=
(
BackgroundCopyFileImpl
*
)
context
;
BackgroundCopyJobImpl
*
job
=
file
->
owner
;
BackgroundCopyJobImpl
*
job
=
file
->
owner
;
TRACE
(
"%p, %p, %
x, %p, %
u
\n
"
,
handle
,
file
,
status
,
buf
,
buflen
);
TRACE
(
"%p, %p, %
lx, %p, %l
u
\n
"
,
handle
,
file
,
status
,
buf
,
buflen
);
switch
(
status
)
switch
(
status
)
{
{
...
@@ -465,7 +465,7 @@ static BOOL transfer_file_local(BackgroundCopyFileImpl *file, const WCHAR *tmpna
...
@@ -465,7 +465,7 @@ static BOOL transfer_file_local(BackgroundCopyFileImpl *file, const WCHAR *tmpna
if
(
!
(
ret
=
CopyFileExW
(
ptr
,
tmpname
,
progress_callback_local
,
file
,
NULL
,
0
)))
if
(
!
(
ret
=
CopyFileExW
(
ptr
,
tmpname
,
progress_callback_local
,
file
,
NULL
,
0
)))
{
{
WARN
(
"Local file copy failed: error %u
\n
"
,
GetLastError
());
WARN
(
"Local file copy failed: error %
l
u
\n
"
,
GetLastError
());
transitionJobState
(
job
,
BG_JOB_STATE_TRANSFERRING
,
BG_JOB_STATE_ERROR
);
transitionJobState
(
job
,
BG_JOB_STATE_TRANSFERRING
,
BG_JOB_STATE_ERROR
);
}
}
...
@@ -482,7 +482,7 @@ BOOL processFile(BackgroundCopyFileImpl *file, BackgroundCopyJobImpl *job)
...
@@ -482,7 +482,7 @@ BOOL processFile(BackgroundCopyFileImpl *file, BackgroundCopyJobImpl *job)
if
(
!
GetTempPathW
(
MAX_PATH
,
tmpDir
))
if
(
!
GetTempPathW
(
MAX_PATH
,
tmpDir
))
{
{
ERR
(
"Couldn't create temp file name: %d
\n
"
,
GetLastError
());
ERR
(
"Couldn't create temp file name: %
l
d
\n
"
,
GetLastError
());
/* Guessing on what state this should give us */
/* Guessing on what state this should give us */
transitionJobState
(
job
,
BG_JOB_STATE_QUEUED
,
BG_JOB_STATE_TRANSIENT_ERROR
);
transitionJobState
(
job
,
BG_JOB_STATE_QUEUED
,
BG_JOB_STATE_TRANSIENT_ERROR
);
return
FALSE
;
return
FALSE
;
...
@@ -490,7 +490,7 @@ BOOL processFile(BackgroundCopyFileImpl *file, BackgroundCopyJobImpl *job)
...
@@ -490,7 +490,7 @@ BOOL processFile(BackgroundCopyFileImpl *file, BackgroundCopyJobImpl *job)
if
(
!
GetTempFileNameW
(
tmpDir
,
L"BIT"
,
0
,
tmpName
))
if
(
!
GetTempFileNameW
(
tmpDir
,
L"BIT"
,
0
,
tmpName
))
{
{
ERR
(
"Couldn't create temp file: %d
\n
"
,
GetLastError
());
ERR
(
"Couldn't create temp file: %
l
d
\n
"
,
GetLastError
());
/* Guessing on what state this should give us */
/* Guessing on what state this should give us */
transitionJobState
(
job
,
BG_JOB_STATE_QUEUED
,
BG_JOB_STATE_TRANSIENT_ERROR
);
transitionJobState
(
job
,
BG_JOB_STATE_QUEUED
,
BG_JOB_STATE_TRANSIENT_ERROR
);
return
FALSE
;
return
FALSE
;
...
...
dlls/qmgr/job.c
View file @
13de3b2e
...
@@ -84,7 +84,7 @@ static ULONG WINAPI copy_error_AddRef(
...
@@ -84,7 +84,7 @@ static ULONG WINAPI copy_error_AddRef(
{
{
struct
copy_error
*
error
=
impl_from_IBackgroundCopyError
(
iface
);
struct
copy_error
*
error
=
impl_from_IBackgroundCopyError
(
iface
);
LONG
refs
=
InterlockedIncrement
(
&
error
->
refs
);
LONG
refs
=
InterlockedIncrement
(
&
error
->
refs
);
TRACE
(
"(%p)->(%d)
\n
"
,
error
,
refs
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
error
,
refs
);
return
refs
;
return
refs
;
}
}
...
@@ -94,7 +94,7 @@ static ULONG WINAPI copy_error_Release(
...
@@ -94,7 +94,7 @@ static ULONG WINAPI copy_error_Release(
struct
copy_error
*
error
=
impl_from_IBackgroundCopyError
(
iface
);
struct
copy_error
*
error
=
impl_from_IBackgroundCopyError
(
iface
);
LONG
refs
=
InterlockedDecrement
(
&
error
->
refs
);
LONG
refs
=
InterlockedDecrement
(
&
error
->
refs
);
TRACE
(
"(%p)->(%d)
\n
"
,
error
,
refs
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
error
,
refs
);
if
(
!
refs
)
if
(
!
refs
)
{
{
...
@@ -116,7 +116,7 @@ static HRESULT WINAPI copy_error_GetError(
...
@@ -116,7 +116,7 @@ static HRESULT WINAPI copy_error_GetError(
*
pContext
=
error
->
context
;
*
pContext
=
error
->
context
;
*
pCode
=
error
->
code
;
*
pCode
=
error
->
code
;
TRACE
(
"returning context %u error code 0x%08x
\n
"
,
error
->
context
,
error
->
code
);
TRACE
(
"returning context %u error code 0x%08
l
x
\n
"
,
error
->
context
,
error
->
code
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -187,7 +187,7 @@ static HRESULT create_copy_error(
...
@@ -187,7 +187,7 @@ static HRESULT create_copy_error(
{
{
struct
copy_error
*
error
;
struct
copy_error
*
error
;
TRACE
(
"context %u code %08x file %p
\n
"
,
context
,
code
,
file
);
TRACE
(
"context %u code %08
l
x file %p
\n
"
,
context
,
code
,
file
);
if
(
!
(
error
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
error
)
)))
return
E_OUTOFMEMORY
;
if
(
!
(
error
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
error
)
)))
return
E_OUTOFMEMORY
;
error
->
IBackgroundCopyError_iface
.
lpVtbl
=
&
copy_error_vtbl
;
error
->
IBackgroundCopyError_iface
.
lpVtbl
=
&
copy_error_vtbl
;
...
@@ -245,7 +245,7 @@ static ULONG WINAPI BackgroundCopyJob_AddRef(IBackgroundCopyJob4 *iface)
...
@@ -245,7 +245,7 @@ static ULONG WINAPI BackgroundCopyJob_AddRef(IBackgroundCopyJob4 *iface)
{
{
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJob4
(
iface
);
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJob4
(
iface
);
ULONG
refcount
=
InterlockedIncrement
(
&
job
->
ref
);
ULONG
refcount
=
InterlockedIncrement
(
&
job
->
ref
);
TRACE
(
"%p, refcount %d.
\n
"
,
iface
,
refcount
);
TRACE
(
"%p, refcount %
l
d.
\n
"
,
iface
,
refcount
);
return
refcount
;
return
refcount
;
}
}
...
@@ -254,7 +254,7 @@ static ULONG WINAPI BackgroundCopyJob_Release(IBackgroundCopyJob4 *iface)
...
@@ -254,7 +254,7 @@ static ULONG WINAPI BackgroundCopyJob_Release(IBackgroundCopyJob4 *iface)
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJob4
(
iface
);
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJob4
(
iface
);
ULONG
i
,
j
,
ref
=
InterlockedDecrement
(
&
job
->
ref
);
ULONG
i
,
j
,
ref
=
InterlockedDecrement
(
&
job
->
ref
);
TRACE
(
"%p, refcount %d.
\n
"
,
iface
,
ref
);
TRACE
(
"%p, refcount %
l
d.
\n
"
,
iface
,
ref
);
if
(
!
ref
)
if
(
!
ref
)
{
{
...
@@ -291,7 +291,7 @@ static HRESULT WINAPI BackgroundCopyJob_AddFileSet(IBackgroundCopyJob4 *iface, U
...
@@ -291,7 +291,7 @@ static HRESULT WINAPI BackgroundCopyJob_AddFileSet(IBackgroundCopyJob4 *iface, U
HRESULT
hr
=
S_OK
;
HRESULT
hr
=
S_OK
;
ULONG
i
;
ULONG
i
;
TRACE
(
"%p, %u, %p.
\n
"
,
iface
,
cFileCount
,
pFileSet
);
TRACE
(
"%p, %
l
u, %p.
\n
"
,
iface
,
cFileCount
,
pFileSet
);
EnterCriticalSection
(
&
job
->
cs
);
EnterCriticalSection
(
&
job
->
cs
);
...
@@ -405,12 +405,12 @@ static HRESULT WINAPI BackgroundCopyJob_Cancel(IBackgroundCopyJob4 *iface)
...
@@ -405,12 +405,12 @@ static HRESULT WINAPI BackgroundCopyJob_Cancel(IBackgroundCopyJob4 *iface)
{
{
if
(
file
->
tempFileName
[
0
]
&&
!
DeleteFileW
(
file
->
tempFileName
))
if
(
file
->
tempFileName
[
0
]
&&
!
DeleteFileW
(
file
->
tempFileName
))
{
{
WARN
(
"Couldn't delete %s (%u)
\n
"
,
debugstr_w
(
file
->
tempFileName
),
GetLastError
());
WARN
(
"Couldn't delete %s (%
l
u)
\n
"
,
debugstr_w
(
file
->
tempFileName
),
GetLastError
());
hr
=
BG_S_UNABLE_TO_DELETE_FILES
;
hr
=
BG_S_UNABLE_TO_DELETE_FILES
;
}
}
if
(
file
->
info
.
LocalName
&&
!
DeleteFileW
(
file
->
info
.
LocalName
))
if
(
file
->
info
.
LocalName
&&
!
DeleteFileW
(
file
->
info
.
LocalName
))
{
{
WARN
(
"Couldn't delete %s (%u)
\n
"
,
debugstr_w
(
file
->
info
.
LocalName
),
GetLastError
());
WARN
(
"Couldn't delete %s (%
l
u)
\n
"
,
debugstr_w
(
file
->
info
.
LocalName
),
GetLastError
());
hr
=
BG_S_UNABLE_TO_DELETE_FILES
;
hr
=
BG_S_UNABLE_TO_DELETE_FILES
;
}
}
}
}
...
@@ -620,7 +620,7 @@ static HRESULT WINAPI BackgroundCopyJob_SetNotifyFlags(IBackgroundCopyJob4 *ifac
...
@@ -620,7 +620,7 @@ static HRESULT WINAPI BackgroundCopyJob_SetNotifyFlags(IBackgroundCopyJob4 *ifac
BG_NOTIFY_JOB_MODIFICATION
|
BG_NOTIFY_JOB_MODIFICATION
|
BG_NOTIFY_FILE_TRANSFERRED
;
BG_NOTIFY_FILE_TRANSFERRED
;
TRACE
(
"%p, %#x.
\n
"
,
iface
,
flags
);
TRACE
(
"%p, %#
l
x.
\n
"
,
iface
,
flags
);
if
(
is_job_done
(
job
))
return
BG_E_INVALID_STATE
;
if
(
is_job_done
(
job
))
return
BG_E_INVALID_STATE
;
if
(
flags
&
~
valid_flags
)
return
E_NOTIMPL
;
if
(
flags
&
~
valid_flags
)
return
E_NOTIMPL
;
...
@@ -686,7 +686,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetNotifyInterface(IBackgroundCopyJob4 *
...
@@ -686,7 +686,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetNotifyInterface(IBackgroundCopyJob4 *
static
HRESULT
WINAPI
BackgroundCopyJob_SetMinimumRetryDelay
(
IBackgroundCopyJob4
*
iface
,
ULONG
delay
)
static
HRESULT
WINAPI
BackgroundCopyJob_SetMinimumRetryDelay
(
IBackgroundCopyJob4
*
iface
,
ULONG
delay
)
{
{
FIXME
(
"%p, %u.
\n
"
,
iface
,
delay
);
FIXME
(
"%p, %
l
u.
\n
"
,
iface
,
delay
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -699,7 +699,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetMinimumRetryDelay(IBackgroundCopyJob4
...
@@ -699,7 +699,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetMinimumRetryDelay(IBackgroundCopyJob4
static
HRESULT
WINAPI
BackgroundCopyJob_SetNoProgressTimeout
(
IBackgroundCopyJob4
*
iface
,
ULONG
timeout
)
static
HRESULT
WINAPI
BackgroundCopyJob_SetNoProgressTimeout
(
IBackgroundCopyJob4
*
iface
,
ULONG
timeout
)
{
{
FIXME
(
"%p, %u.: stub
\n
"
,
iface
,
timeout
);
FIXME
(
"%p, %
l
u.: stub
\n
"
,
iface
,
timeout
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -859,13 +859,13 @@ static HRESULT WINAPI BackgroundCopyJob_AddFileWithRanges(
...
@@ -859,13 +859,13 @@ static HRESULT WINAPI BackgroundCopyJob_AddFileWithRanges(
DWORD
RangeCount
,
DWORD
RangeCount
,
BG_FILE_RANGE
Ranges
[])
BG_FILE_RANGE
Ranges
[])
{
{
FIXME
(
"%p, %s, %s, %u, %p: stub
\n
"
,
iface
,
debugstr_w
(
RemoteUrl
),
debugstr_w
(
LocalName
),
RangeCount
,
Ranges
);
FIXME
(
"%p, %s, %s, %
l
u, %p: stub
\n
"
,
iface
,
debugstr_w
(
RemoteUrl
),
debugstr_w
(
LocalName
),
RangeCount
,
Ranges
);
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
BackgroundCopyJob_SetFileACLFlags
(
IBackgroundCopyJob4
*
iface
,
DWORD
flags
)
static
HRESULT
WINAPI
BackgroundCopyJob_SetFileACLFlags
(
IBackgroundCopyJob4
*
iface
,
DWORD
flags
)
{
{
FIXME
(
"%p, %#x: stub
\n
"
,
iface
,
flags
);
FIXME
(
"%p, %#
l
x: stub
\n
"
,
iface
,
flags
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -877,7 +877,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetFileACLFlags(IBackgroundCopyJob4 *ifa
...
@@ -877,7 +877,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetFileACLFlags(IBackgroundCopyJob4 *ifa
static
HRESULT
WINAPI
BackgroundCopyJob_SetPeerCachingFlags
(
IBackgroundCopyJob4
*
iface
,
DWORD
flags
)
static
HRESULT
WINAPI
BackgroundCopyJob_SetPeerCachingFlags
(
IBackgroundCopyJob4
*
iface
,
DWORD
flags
)
{
{
FIXME
(
"%p, %#x.
\n
"
,
iface
,
flags
);
FIXME
(
"%p, %#
l
x.
\n
"
,
iface
,
flags
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -901,7 +901,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetOwnerElevationState(IBackgroundCopyJo
...
@@ -901,7 +901,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetOwnerElevationState(IBackgroundCopyJo
static
HRESULT
WINAPI
BackgroundCopyJob_SetMaximumDownloadTime
(
IBackgroundCopyJob4
*
iface
,
ULONG
timeout
)
static
HRESULT
WINAPI
BackgroundCopyJob_SetMaximumDownloadTime
(
IBackgroundCopyJob4
*
iface
,
ULONG
timeout
)
{
{
FIXME
(
"%p, %u.
\n
"
,
iface
,
timeout
);
FIXME
(
"%p, %
l
u.
\n
"
,
iface
,
timeout
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -1100,7 +1100,7 @@ static HRESULT WINAPI http_options_SetSecurityFlags(
...
@@ -1100,7 +1100,7 @@ static HRESULT WINAPI http_options_SetSecurityFlags(
{
{
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJobHttpOptions
(
iface
);
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJobHttpOptions
(
iface
);
TRACE
(
"(%p)->(0x%08x)
\n
"
,
iface
,
Flags
);
TRACE
(
"(%p)->(0x%08
l
x)
\n
"
,
iface
,
Flags
);
job
->
http_options
.
flags
=
Flags
;
job
->
http_options
.
flags
=
Flags
;
return
S_OK
;
return
S_OK
;
...
...
dlls/qmgr/qmgr.c
View file @
13de3b2e
...
@@ -108,14 +108,14 @@ static HRESULT WINAPI BackgroundCopyManager_GetJob(IBackgroundCopyManager *iface
...
@@ -108,14 +108,14 @@ static HRESULT WINAPI BackgroundCopyManager_GetJob(IBackgroundCopyManager *iface
static
HRESULT
WINAPI
BackgroundCopyManager_EnumJobs
(
IBackgroundCopyManager
*
iface
,
static
HRESULT
WINAPI
BackgroundCopyManager_EnumJobs
(
IBackgroundCopyManager
*
iface
,
DWORD
flags
,
IEnumBackgroundCopyJobs
**
ppEnum
)
DWORD
flags
,
IEnumBackgroundCopyJobs
**
ppEnum
)
{
{
TRACE
(
"(0x%x %p)
\n
"
,
flags
,
ppEnum
);
TRACE
(
"(0x%
l
x %p)
\n
"
,
flags
,
ppEnum
);
return
enum_copy_job_create
(
&
globalMgr
,
ppEnum
);
return
enum_copy_job_create
(
&
globalMgr
,
ppEnum
);
}
}
static
HRESULT
WINAPI
BackgroundCopyManager_GetErrorDescription
(
IBackgroundCopyManager
*
iface
,
static
HRESULT
WINAPI
BackgroundCopyManager_GetErrorDescription
(
IBackgroundCopyManager
*
iface
,
HRESULT
hr
,
DWORD
langid
,
LPWSTR
*
error_description
)
HRESULT
hr
,
DWORD
langid
,
LPWSTR
*
error_description
)
{
{
FIXME
(
"(0x%08
x 0x%
x %p): stub
\n
"
,
hr
,
langid
,
error_description
);
FIXME
(
"(0x%08
lx 0x%l
x %p): stub
\n
"
,
hr
,
langid
,
error_description
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
dlls/qmgr/service.c
View file @
13de3b2e
...
@@ -64,7 +64,7 @@ ServiceHandler(DWORD ctrl, DWORD event_type, LPVOID event_data, LPVOID context)
...
@@ -64,7 +64,7 @@ ServiceHandler(DWORD ctrl, DWORD event_type, LPVOID event_data, LPVOID context)
SetEvent
(
stop_event
);
SetEvent
(
stop_event
);
break
;
break
;
default:
default:
FIXME
(
"ignoring handle service ctrl %x
\n
"
,
ctrl
);
FIXME
(
"ignoring handle service ctrl %
l
x
\n
"
,
ctrl
);
UpdateStatus
(
status
.
dwCurrentState
,
NO_ERROR
,
0
);
UpdateStatus
(
status
.
dwCurrentState
,
NO_ERROR
,
0
);
break
;
break
;
}
}
...
@@ -116,7 +116,7 @@ ServiceMain(DWORD dwArgc, LPWSTR *lpszArgv)
...
@@ -116,7 +116,7 @@ ServiceMain(DWORD dwArgc, LPWSTR *lpszArgv)
status_handle
=
RegisterServiceCtrlHandlerExW
(
L"BITS"
,
ServiceHandler
,
NULL
);
status_handle
=
RegisterServiceCtrlHandlerExW
(
L"BITS"
,
ServiceHandler
,
NULL
);
if
(
!
status_handle
)
{
if
(
!
status_handle
)
{
ERR
(
"failed to register handler: %u
\n
"
,
GetLastError
());
ERR
(
"failed to register handler: %
l
u
\n
"
,
GetLastError
());
return
;
return
;
}
}
...
@@ -129,7 +129,7 @@ ServiceMain(DWORD dwArgc, LPWSTR *lpszArgv)
...
@@ -129,7 +129,7 @@ ServiceMain(DWORD dwArgc, LPWSTR *lpszArgv)
globalMgr
.
jobEvent
=
CreateEventW
(
NULL
,
TRUE
,
FALSE
,
NULL
);
globalMgr
.
jobEvent
=
CreateEventW
(
NULL
,
TRUE
,
FALSE
,
NULL
);
if
(
!
globalMgr
.
jobEvent
)
{
if
(
!
globalMgr
.
jobEvent
)
{
ERR
(
"Couldn't create event: error %d
\n
"
,
GetLastError
());
ERR
(
"Couldn't create event: error %
l
d
\n
"
,
GetLastError
());
UpdateStatus
(
SERVICE_STOPPED
,
NO_ERROR
,
0
);
UpdateStatus
(
SERVICE_STOPPED
,
NO_ERROR
,
0
);
return
;
return
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment