Adrien-Bodineau

Results 7 comments of Adrien-Bodineau

A solution could be to use the capability of a SecurityDescriptor to be serialized as a String to provide a safe interface using the documentation for the [SDDL](https://learn.microsoft.com/en-us/windows/win32/secauthz/security-descriptor-definition-language) then internally...

Ho sorry, I was talking about the `windows` crate

I did not, thus my question about how long would it take for it to be tested, thrusted and released (currently last version is 0.58.0). But if you tell me...

I do not think it should always panic, depending on the case. in the ledger for example it seems that wrapping is the expected behavior and thus should be explicitly...

also worth to mention that in `release` the `% MAX_FILE_ID` does extra computation for nothing as it tries to compute the modulo `u16::MAX`. But because the value silently wrap in...

for now the `dev` mode do not panic because `MAX_FILE_ID` is 6

NonNull would only work for `*mut p` as stated by the documentation. but for strictly `out` parameters that would be a good idea I think