Skip to content

Commit

Permalink
Doc - Improve DOKAN_OPTIONS comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Liryna authored Oct 5, 2018
1 parent c19ee0e commit a0791e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dokan/dokan.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,22 +101,22 @@ extern "C" {
* \see DokanMain
*/
typedef struct _DOKAN_OPTIONS {
/** Version of the Dokan features requested (version "123" is equal to Dokan version 1.2.3). */
/** Version of the Dokan features requested without dots (version "123" is equal to Dokan version 1.2.3). */
USHORT Version;
/** Number of threads to be used internally by Dokan library. More threads will handle more events at the same time. */
/** Number of threads to be used by Dokan library internally. More threads will handle more events at the same time. */
USHORT ThreadCount;
/** Features enabled for the mount. See \ref DOKAN_OPTION. */
ULONG Options;
/** FileSystem can store anything here. */
ULONG64 GlobalContext;
/** Mount point. Can be "M:\" (drive letter) or "C:\mount\dokan" (path in NTFS). */
/** Mount point. It can be a driver letter like "M:\" or a folder path "C:\mount\dokan" on a NTFS partition. */
LPCWSTR MountPoint;
/**
* UNC Name for the Network Redirector
* \see <a href="https://msdn.microsoft.com/en-us/library/windows/hardware/ff556761(v=vs.85).aspx">Support for UNC Naming</a>
*/
LPCWSTR UNCName;
/** Max timeout in milliseconds of each request before Dokan gives up. */
/** Max timeout in milliseconds of each request before Dokan gives up to wait events to complete. */
ULONG Timeout;
/** Allocation Unit Size of the volume. This will affect the file size. */
ULONG AllocationUnitSize;
Expand Down

0 comments on commit a0791e4

Please sign in to comment.