This commit is contained in:
DavidXanatos 2023-05-15 19:49:56 +02:00
parent aa0b610a51
commit 28258f6be7
2 changed files with 13 additions and 2 deletions

View File

@ -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)

View File

@ -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);