Skip to content

Commit 0d08cc4

Browse files
authored
Merge pull request #11 from dokan-dev/dev_2.0.6.1000
Dev 2.0.6.1000
2 parents 5a14dd1 + fd4f3dc commit 0d08cc4

File tree

8 files changed

+470
-371
lines changed

8 files changed

+470
-371
lines changed

Dokan.pas

Lines changed: 137 additions & 95 deletions
Large diffs are not rendered by default.

DokanWin.pas

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*
2-
Dokan API wrapper for Delphi based on Release 1.4.1.1000
3-
https://github.com/dokan-dev/dokany/releases/tag/v1.4.1.1000
4-
Copyright (C) 2019 - 2021 Sven Harazim
2+
Dokan API wrapper for Delphi based on Release 2.0.5.1000
3+
https://github.com/dokan-dev/dokany/releases/tag/v2.0.5.1000
4+
Copyright (C) 2019 - 2023 Sven Harazim
55
66
Dokan : user-mode file system library for Windows
77
@@ -43,6 +43,9 @@ interface
4343
ULONG64 = UInt64;
4444
PACCESS_MASK = ^ACCESS_MASK;
4545

46+
LPVOID = Pointer;
47+
PVOID = Pointer;
48+
4649
_UNICODE_STRING = record
4750
Length: USHORT;
4851
MaximumLength: USHORT;
@@ -267,6 +270,8 @@ _WIN32_FIND_STREAM_DATA = record
267270
STATUS_CANNOT_DELETE = NTSTATUS($C0000121);
268271
STATUS_NOT_FOUND = NTSTATUS($C0000225);
269272

273+
VOLUME_SECURITY_DESCRIPTOR_MAX_SIZE = 1024 * 16;
274+
270275
implementation
271276

272277
end.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2015 - 2021 Adrien J. <[email protected]> and Maxime C. <[email protected]>
1+
Copyright (C) 2015 - 2022 Adrien J. <[email protected]> and Maxime C. <[email protected]>
22
Copyright (C) 2007 - 2011 Hiroki Asakawa <[email protected]>
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ Delphi/FreePascal and Dokan library
1515
## Supported Dokan Version
1616
https://github.com/dokan-dev/dokany
1717

18-
1.4.1.1000
18+
2.0.6.1000
1919

20-
https://github.com/dokan-dev/dokany/releases/tag/v1.4.1.1000
20+
https://github.com/dokan-dev/dokany/releases/tag/v2.0.6.1000
21+
22+
## Update Dokan 1.1.0 application to Dokany 2.x.x
23+
24+
https://github.com/dokan-dev/dokany/wiki/Update-Dokan-1.1.0-application-to-Dokany-2.0.0
2125

2226
## How to write a file system
2327
To make a file system, an application needs to implement IDokanOperations interface.

0 commit comments

Comments
 (0)