We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The zwCreateFile method contains the parameter securityContext with the type WinBase.SECURITY_ATTRIBUTES.
Looking at the Dokany docs, this is the wrong type and if one looks into the dokan.h, a strucutre called PDOKAN_IO_SECURITY_CONTEXTis returned. https://github.com/dokan-dev/dokany/blob/181a6bd5a50f60aa0f1e96cd218bc5ef70308b4b/dokan/dokan.h#L249
PDOKAN_IO_SECURITY_CONTEXT
It is a structure of the sys module with the definition:
typedef struct _DOKAN_IO_SECURITY_CONTEXT { DOKAN_ACCESS_STATE AccessState; ACCESS_MASK DesiredAccess; } DOKAN_IO_SECURITY_CONTEXT, *PDOKAN_IO_SECURITY_CONTEXT;
This type mus be implemented to correctly accessing this parameter.
The text was updated successfully, but these errors were encountered:
Merge branch 'feature/#38-implementDokanIOSecurityContext' into develop
e03ca4d
closes #38
No branches or pull requests
The zwCreateFile method contains the parameter securityContext with the type WinBase.SECURITY_ATTRIBUTES.
Looking at the Dokany docs, this is the wrong type and if one looks into the dokan.h, a strucutre called
PDOKAN_IO_SECURITY_CONTEXT
is returned.https://github.com/dokan-dev/dokany/blob/181a6bd5a50f60aa0f1e96cd218bc5ef70308b4b/dokan/dokan.h#L249
It is a structure of the sys module with the definition:
This type mus be implemented to correctly accessing this parameter.
The text was updated successfully, but these errors were encountered: