2 * Background Intelligent Transfer Service (BITS) 2.0 interface
4 * Copyright 2015 Hans Leidekker for CodeWeavers
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
27 cpp_quote
("#define BG_COPY_FILE_OWNER 1")
28 cpp_quote
("#define BG_COPY_FILE_GROUP 2")
29 cpp_quote
("#define BG_COPY_FILE_DACL 4")
30 cpp_quote
("#define BG_COPY_FILE_SACL 8")
31 cpp_quote
("#define BG_COPY_FILE_ALL 15")
33 cpp_quote
("#define BG_LENGTH_TO_EOF (UINT64)(-1)")
35 typedef struct _BG_FILE_RANGE
42 uuid(443c8934
-90ff
-48ed
-bcde
-26f5c7450042
),
45 interface IBackgroundCopyJob3
: IBackgroundCopyJob2
47 HRESULT ReplaceRemotePrefix
(
48 [in] LPCWSTR OldPrefix
,
49 [in] LPCWSTR NewPrefix
);
51 HRESULT AddFileWithRanges
(
52 [in] LPCWSTR RemoteUrl
,
53 [in] LPCWSTR LocalName
,
54 [in] DWORD RangeCount
,
55 [in, size_is(RangeCount
)] BG_FILE_RANGE Ranges
[]);
57 HRESULT SetFileACLFlags
(
60 HRESULT GetFileACLFlags
(
61 [out, ref] DWORD
*Flags
);
65 uuid(83e81b93
-0873-474d
-8a8c
-f2018b1a939c
),
68 interface IBackgroundCopyFile2
: IBackgroundCopyFile
70 HRESULT GetFileRanges
(
71 [in, out, unique] DWORD
*RangeCount
,
72 [out, size_is(, *RangeCount
)] BG_FILE_RANGE
**Ranges
);
74 HRESULT SetRemoteName
(
79 uuid(2289a9af
-dc96
-486e
-b268
-89c9e3397c3d
),
82 library BackgroundCopyManager2_0
85 uuid(6d18ad12
-bde3
-4393-b311
-099c346e6df9
)
87 coclass BackgroundCopyManager2_0
89 [default] interface IBackgroundCopyManager
;
92 interface IBackgroundCopyCallback
;
93 interface IBackgroundCopyJob3
;
94 interface IBackgroundCopyFile2
;