You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// win32metadata 15.0.10.58516
public const int STGM_READ = 0;
public const int STGM_WRITE = 1;
public const int STGM_READWRITE = 2;
...
riverar
changed the title
type mismatch of the parameter stgmaccess in function OpenPropertyStore
Type mismatch between STGM constants, various storage object method parameters
Nov 23, 2021
OpenPropertyStore here has a parameter stgmaccess which is u32. But the constant like STGM_READ and STGM_Write here is defined as i32.
The text was updated successfully, but these errors were encountered: