1.9.4
This commit is contained in:
parent
aa0b610a51
commit
28258f6be7
|
@ -19,13 +19,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- added tray menu option to dismiss a pending update notification
|
||||
|
||||
### Changed
|
||||
- improved compatybility template for Data Protection mode (thanks Mr.X)
|
||||
- improved compatybility template for Data Protection mode (thanks offhub)
|
||||
|
||||
### Fixed
|
||||
- fixed Qt6 issues in ARM64 build
|
||||
- fixed delete V2 bug when using box mounts without a drive letter
|
||||
- fixed icon overlay issue with high DPI scaling
|
||||
|
||||
- fix behaviour on multiple selection (thanks okrc)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -2132,6 +2132,17 @@ __declspec(dllimport) NTSTATUS __stdcall NtMapViewOfSection(
|
|||
IN ULONG AllocationType,
|
||||
IN ULONG Protect);
|
||||
|
||||
__declspec(dllimport) NTSTATUS __stdcall NtNotifyChangeDirectoryFile(
|
||||
IN HANDLE FileHandle,
|
||||
IN HANDLE Event OPTIONAL,
|
||||
IN PIO_APC_ROUTINE ApcRoutine OPTIONAL,
|
||||
IN PVOID ApcContext OPTIONAL,
|
||||
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
||||
OUT PVOID Buffer,
|
||||
IN ULONG BufferSize,
|
||||
IN ULONG CompletionFilter,
|
||||
IN BOOLEAN WatchTree);
|
||||
|
||||
__declspec(dllimport) NTSTATUS __stdcall NtUnmapViewOfSection(
|
||||
IN HANDLE ProcessHandle,
|
||||
IN PVOID BaseAddress);
|
||||
|
|
Loading…
Reference in New Issue