Zebediah Figura : kernelbase: Implement GetFileInformationByHandleEx(FileAttributeTagInfo).

Alexandre Julliard julliard at winehq.org
Thu Sep 26 15:51:20 CDT 2019


Module: wine
Branch: master
Commit: 1669956966fd1af9e8195576089ef9af3368be72
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=1669956966fd1af9e8195576089ef9af3368be72

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Thu Sep 26 13:34:34 2019 -0500

kernelbase: Implement GetFileInformationByHandleEx(FileAttributeTagInfo).

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47813
Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernelbase/file.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dlls/kernelbase/file.c b/dlls/kernelbase/file.c
index 74d166b6b9..7a6f843f43 100644
--- a/dlls/kernelbase/file.c
+++ b/dlls/kernelbase/file.c
@@ -1534,7 +1534,6 @@ BOOL WINAPI DECLSPEC_HOTPATCH GetFileInformationByHandleEx( HANDLE handle, FILE_
     {
     case FileStreamInfo:
     case FileCompressionInfo:
-    case FileAttributeTagInfo:
     case FileRemoteProtocolInfo:
     case FileFullDirectoryInfo:
     case FileFullDirectoryRestartInfo:
@@ -1546,6 +1545,10 @@ BOOL WINAPI DECLSPEC_HOTPATCH GetFileInformationByHandleEx( HANDLE handle, FILE_
         SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
         return FALSE;
 
+    case FileAttributeTagInfo:
+        status = NtQueryInformationFile( handle, &io, info, size, FileAttributeTagInformation );
+        break;
+
     case FileBasicInfo:
         status = NtQueryInformationFile( handle, &io, info, size, FileBasicInformation );
         break;




More information about the wine-cvs mailing list