diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/winapi/src/um/bits2_0.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/winapi/src/um/bits2_0.rs')
-rw-r--r-- | vendor/winapi/src/um/bits2_0.rs | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/vendor/winapi/src/um/bits2_0.rs b/vendor/winapi/src/um/bits2_0.rs deleted file mode 100644 index 15e5827..0000000 --- a/vendor/winapi/src/um/bits2_0.rs +++ /dev/null @@ -1,51 +0,0 @@ -// Licensed under the Apache License, Version 2.0 -// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license -// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option. -// All files in the project carrying such notice may not be copied, modified, or distributed -// except according to those terms. -use shared::basetsd::UINT64; -use shared::minwindef::DWORD; -use um::bits::{IBackgroundCopyFile, IBackgroundCopyFileVtbl}; -use um::bits1_5::{IBackgroundCopyJob2, IBackgroundCopyJob2Vtbl}; -use um::winnt::{HRESULT, LPCWSTR}; -pub const BG_LENGTH_TO_EOF: UINT64 = -1i64 as u64; -STRUCT!{struct BG_FILE_RANGE { - InitialOffset: UINT64, - Length: UINT64, -}} -pub const BG_COPY_FILE_OWNER: DWORD = 1; -pub const BG_COPY_FILE_GROUP: DWORD = 2; -pub const BG_COPY_FILE_DACL: DWORD = 4; -pub const BG_COPY_FILE_SACL: DWORD = 8; -pub const BG_COPY_FILE_ALL: DWORD = 15; -RIDL!{#[uuid(0x443c8934, 0x90ff, 0x48ed, 0xbc, 0xde, 0x26, 0xf5, 0xc7, 0x45, 0x00, 0x42)] -interface IBackgroundCopyJob3(IBackgroundCopyJob3Vtbl): - IBackgroundCopyJob2(IBackgroundCopyJob2Vtbl) { - fn ReplaceRemotePrefix( - OldPrefix: LPCWSTR, - NewPrefix: LPCWSTR, - ) -> HRESULT, - fn AddFileWithRanges( - RemoteUrl: LPCWSTR, - LocalName: LPCWSTR, - RangeCount: DWORD, - Ranges: *mut BG_FILE_RANGE, - ) -> HRESULT, - fn SetFileACLFlags( - Flags: DWORD, - ) -> HRESULT, - fn GetFileACLFlags( - Flags: *mut DWORD, - ) -> HRESULT, -}} -RIDL!{#[uuid(0x83e81b93, 0x0873, 0x474d, 0x8a, 0x8c, 0xf2, 0x01, 0x8b, 0x1a, 0x93, 0x9c)] -interface IBackgroundCopyFile2(IBackgroundCopyFile2Vtbl): - IBackgroundCopyFile(IBackgroundCopyFileVtbl) { - fn GetFileRanges( - RangeCount: *mut DWORD, - Ranges: *mut *mut BG_FILE_RANGE, - ) -> HRESULT, - fn SetRemoteName( - Val: LPCWSTR, - ) -> HRESULT, -}} |