Commit 8f0d5a37 authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

kernel32/tests: Add tests for GetFinalPathNameByHandleA/W.

parent 5ecc08e3
...@@ -741,6 +741,15 @@ typedef DWORD (WINAPI *PFE_IMPORT_FUNC)(PBYTE,PVOID,ULONG); ...@@ -741,6 +741,15 @@ typedef DWORD (WINAPI *PFE_IMPORT_FUNC)(PBYTE,PVOID,ULONG);
#define STD_OUTPUT_HANDLE ((DWORD) -11) #define STD_OUTPUT_HANDLE ((DWORD) -11)
#define STD_ERROR_HANDLE ((DWORD) -12) #define STD_ERROR_HANDLE ((DWORD) -12)
/* Flags for GetFinalPathNameByHandle
*/
#define FILE_NAME_NORMALIZED 0x0
#define FILE_NAME_OPENED 0x8
#define VOLUME_NAME_DOS 0x0
#define VOLUME_NAME_GUID 0x1
#define VOLUME_NAME_NT 0x2
#define VOLUME_NAME_NONE 0x4
typedef struct _BY_HANDLE_FILE_INFORMATION typedef struct _BY_HANDLE_FILE_INFORMATION
{ {
DWORD dwFileAttributes; DWORD dwFileAttributes;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment