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
83aee6b1
Commit
83aee6b1
authored
Feb 26, 2008
by
Roy Shea
Committed by
Alexandre Julliard
Feb 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Implement the IUnknown interface for IEnumBackgroundCopyFiles.
parent
be8bac15
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
184 additions
and
0 deletions
+184
-0
Makefile.in
dlls/qmgr/Makefile.in
+1
-0
enum_files.c
dlls/qmgr/enum_files.c
+171
-0
qmgr.h
dlls/qmgr/qmgr.h
+12
-0
No files found.
dlls/qmgr/Makefile.in
View file @
83aee6b1
...
...
@@ -7,6 +7,7 @@ IMPORTS = advpack ole32 advapi32 kernel32
EXTRALIBS
=
-luuid
C_SRCS
=
\
enum_files.c
\
enum_jobs.c
\
factory.c
\
file.c
\
...
...
dlls/qmgr/enum_files.c
0 → 100644
View file @
83aee6b1
/*
* Queue Manager (BITS) File Enumerator
*
* Copyright 2007 Google (Roy Shea)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "qmgr.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
qmgr
);
static
void
EnumBackgroundCopyFilesDestructor
(
EnumBackgroundCopyFilesImpl
*
This
)
{
ULONG
i
;
for
(
i
=
0
;
i
<
This
->
numFiles
;
i
++
)
IBackgroundCopyFile_Release
(
This
->
files
[
i
]);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
files
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
static
ULONG
WINAPI
BITS_IEnumBackgroundCopyFiles_AddRef
(
IEnumBackgroundCopyFiles
*
iface
)
{
EnumBackgroundCopyFilesImpl
*
This
=
(
EnumBackgroundCopyFilesImpl
*
)
iface
;
return
InterlockedIncrement
(
&
This
->
ref
);
}
static
HRESULT
WINAPI
BITS_IEnumBackgroundCopyFiles_QueryInterface
(
IEnumBackgroundCopyFiles
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
EnumBackgroundCopyFilesImpl
*
This
=
(
EnumBackgroundCopyFilesImpl
*
)
iface
;
TRACE
(
"IID: %s
\n
"
,
debugstr_guid
(
riid
));
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IEnumBackgroundCopyFiles
))
{
*
ppvObject
=
&
This
->
lpVtbl
;
BITS_IEnumBackgroundCopyFiles_AddRef
(
iface
);
return
S_OK
;
}
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
BITS_IEnumBackgroundCopyFiles_Release
(
IEnumBackgroundCopyFiles
*
iface
)
{
EnumBackgroundCopyFilesImpl
*
This
=
(
EnumBackgroundCopyFilesImpl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
if
(
ref
==
0
)
EnumBackgroundCopyFilesDestructor
(
This
);
return
ref
;
}
/*** IEnumBackgroundCopyFiles methods ***/
static
HRESULT
WINAPI
BITS_IEnumBackgroundCopyFiles_Next
(
IEnumBackgroundCopyFiles
*
iface
,
ULONG
celt
,
IBackgroundCopyFile
**
rgelt
,
ULONG
*
pceltFetched
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IEnumBackgroundCopyFiles_Skip
(
IEnumBackgroundCopyFiles
*
iface
,
ULONG
celt
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IEnumBackgroundCopyFiles_Reset
(
IEnumBackgroundCopyFiles
*
iface
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IEnumBackgroundCopyFiles_Clone
(
IEnumBackgroundCopyFiles
*
iface
,
IEnumBackgroundCopyFiles
**
ppenum
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IEnumBackgroundCopyFiles_GetCount
(
IEnumBackgroundCopyFiles
*
iface
,
ULONG
*
puCount
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
const
IEnumBackgroundCopyFilesVtbl
BITS_IEnumBackgroundCopyFiles_Vtbl
=
{
BITS_IEnumBackgroundCopyFiles_QueryInterface
,
BITS_IEnumBackgroundCopyFiles_AddRef
,
BITS_IEnumBackgroundCopyFiles_Release
,
BITS_IEnumBackgroundCopyFiles_Next
,
BITS_IEnumBackgroundCopyFiles_Skip
,
BITS_IEnumBackgroundCopyFiles_Reset
,
BITS_IEnumBackgroundCopyFiles_Clone
,
BITS_IEnumBackgroundCopyFiles_GetCount
};
HRESULT
EnumBackgroundCopyFilesConstructor
(
LPVOID
*
ppObj
,
IBackgroundCopyJob
*
iCopyJob
)
{
EnumBackgroundCopyFilesImpl
*
This
;
BackgroundCopyFileImpl
*
file
;
BackgroundCopyJobImpl
*
job
=
(
BackgroundCopyJobImpl
*
)
iCopyJob
;
ULONG
i
;
TRACE
(
"%p, %p)
\n
"
,
ppObj
,
job
);
This
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
*
This
);
if
(
!
This
)
return
E_OUTOFMEMORY
;
This
->
lpVtbl
=
&
BITS_IEnumBackgroundCopyFiles_Vtbl
;
This
->
ref
=
1
;
/* Create array of files */
This
->
indexFiles
=
0
;
This
->
numFiles
=
list_count
(
&
job
->
files
);
This
->
files
=
NULL
;
if
(
This
->
numFiles
>
0
)
{
This
->
files
=
HeapAlloc
(
GetProcessHeap
(),
0
,
This
->
numFiles
*
sizeof
This
->
files
[
0
]);
if
(
!
This
->
files
)
{
HeapFree
(
GetProcessHeap
(),
0
,
This
);
return
E_OUTOFMEMORY
;
}
}
i
=
0
;
LIST_FOR_EACH_ENTRY
(
file
,
&
job
->
files
,
BackgroundCopyFileImpl
,
entryFromJob
)
{
file
->
lpVtbl
->
AddRef
((
IBackgroundCopyFile
*
)
file
);
This
->
files
[
i
]
=
(
IBackgroundCopyFile
*
)
file
;
++
i
;
}
*
ppObj
=
&
This
->
lpVtbl
;
return
S_OK
;
}
dlls/qmgr/qmgr.h
View file @
83aee6b1
...
...
@@ -49,6 +49,16 @@ typedef struct
LONG
ref
;
}
EnumBackgroundCopyJobsImpl
;
/* Enum background copy files vtbl and related data */
typedef
struct
{
const
IEnumBackgroundCopyFilesVtbl
*
lpVtbl
;
LONG
ref
;
IBackgroundCopyFile
**
files
;
ULONG
numFiles
;
ULONG
indexFiles
;
}
EnumBackgroundCopyFilesImpl
;
/* Background copy file vtbl and related data */
typedef
struct
{
...
...
@@ -79,6 +89,8 @@ HRESULT EnumBackgroundCopyJobsConstructor(LPVOID *ppObj,
IBackgroundCopyManager
*
copyManager
);
HRESULT
BackgroundCopyFileConstructor
(
LPCWSTR
remoteName
,
LPCWSTR
localName
,
LPVOID
*
ppObj
);
HRESULT
EnumBackgroundCopyFilesConstructor
(
LPVOID
*
ppObj
,
IBackgroundCopyJob
*
copyJob
);
/* Little helper functions */
static
inline
char
*
...
...
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