-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
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
ResilientChangeTrackingEnabled = true has no effect #356
Comments
Please try the other using var v = VirtualDisk.Open(filename, mask: VIRTUAL_DISK_ACCESS_MASK.VIRTUAL_DISK_ACCESS_ALL);
v.ResilientChangeTrackingEnabled = false; |
Nope, it does not work either. |
Is your main application 64-bit? |
The platform target is set to “Any CPU” and I can’t find any other option that could relate to platform. |
Are you able to build your EXE with the target of |
That’s a win! It works in |
Yep. Under 32-bit builds the structure aligns correctly so setting the structure field to |
This is now fixed |
If RCT is not enabled, it can’t be enabled using the
ResilientChangeTrackingEnabled
property:Does nothing (And it does not throw any error).
From a C++ program, invoking the native function works:
Please note that
ResilientChangeTrackingEnabled = false
(disabling RCT) actually works 😅, so RCT can be disabled, but not enabled.The text was updated successfully, but these errors were encountered: