You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Rebase against bd2999db92e63f3aa8b48945503c616c28726842.
[dwmapi-DwmSetWindowAttribute] Removed patch to fake success in dwmapi.DwmSetWindowAttribute function (accepted upstream). [ntdll-NtSetLdtEntries] Partially removed patch to implement ntdll.NtSetLdtEntries (accepted upstream). [shell32-UNIXFS_get_unix_path] Removed patch to check IsWoW64Process before calling Wow64 functions in UNIXFS_get_unix_path (fixed upstream).
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
From 3c92859cfaa24d7f873d7bd818c26832b856a356 Mon Sep 17 00:00:00 2001
|
||||
From 27f64eefe26b79cf7f0a0c6bc640509f759aad91 Mon Sep 17 00:00:00 2001
|
||||
From: Qian Hong <qhong@codeweavers.com>
|
||||
Date: Thu, 22 Oct 2015 15:54:30 +0800
|
||||
Subject: ntdll: Implement FileNamesInformation class support.
|
||||
@@ -8,7 +8,7 @@ Subject: ntdll: Implement FileNamesInformation class support.
|
||||
1 file changed, 9 insertions(+)
|
||||
|
||||
diff --git a/dlls/ntdll/directory.c b/dlls/ntdll/directory.c
|
||||
index 41e7115..f0e0703 100644
|
||||
index f7fa951..30e7d1d 100644
|
||||
--- a/dlls/ntdll/directory.c
|
||||
+++ b/dlls/ntdll/directory.c
|
||||
@@ -178,6 +178,7 @@ union file_directory_info
|
||||
@@ -18,8 +18,8 @@ index 41e7115..f0e0703 100644
|
||||
+ FILE_NAMES_INFORMATION names;
|
||||
};
|
||||
|
||||
static BOOL show_dot_files;
|
||||
@@ -260,6 +261,8 @@ static inline unsigned int dir_info_size( FILE_INFORMATION_CLASS class, unsigned
|
||||
struct dir_data
|
||||
@@ -271,6 +272,8 @@ static inline unsigned int dir_info_size( FILE_INFORMATION_CLASS class, unsigned
|
||||
return (FIELD_OFFSET( FILE_ID_BOTH_DIRECTORY_INFORMATION, FileName[len] ) + 7) & ~7;
|
||||
case FileIdFullDirectoryInformation:
|
||||
return (FIELD_OFFSET( FILE_ID_FULL_DIRECTORY_INFORMATION, FileName[len] ) + 7) & ~7;
|
||||
@@ -28,7 +28,7 @@ index 41e7115..f0e0703 100644
|
||||
default:
|
||||
assert(0);
|
||||
return 0;
|
||||
@@ -1485,6 +1488,11 @@ static union file_directory_info *append_entry( void *info_ptr, IO_STATUS_BLOCK
|
||||
@@ -1506,6 +1509,11 @@ static union file_directory_info *append_entry( struct dir_data *dir_data, void
|
||||
filename = info->id_both.FileName;
|
||||
break;
|
||||
|
||||
@@ -40,7 +40,7 @@ index 41e7115..f0e0703 100644
|
||||
default:
|
||||
assert(0);
|
||||
return NULL;
|
||||
@@ -2244,6 +2252,7 @@ NTSTATUS WINAPI NtQueryDirectoryFile( HANDLE handle, HANDLE event,
|
||||
@@ -2356,6 +2364,7 @@ NTSTATUS WINAPI NtQueryDirectoryFile( HANDLE handle, HANDLE event,
|
||||
case FileFullDirectoryInformation:
|
||||
case FileIdBothDirectoryInformation:
|
||||
case FileIdFullDirectoryInformation:
|
||||
|
||||
Reference in New Issue
Block a user