http://bugs.winehq.org/show_bug.cgi?id=59935 --- Comment #8 from Stian Low <wineryyyyy@gmail.com> --- (In reply to coyote from comment #6)
I'd like to find out if Wine has implemented NtLockFile to some extent.
I found nothing for NtLockFile for staging and gitlab merge requests.
For your information, simply calling NtLockFile via Python also results in an unimplemented error.
Right but hacking wine's code so that NtLockFile does not return STATUS_NOT_IMPLEMENTED; allows hello-world.exe to compile and run. If you are able to build wine, you may test this patch to see if it also works for your zig version and source files: modified dlls/ntdll/unix/file.c @@ -6973,7 +6973,7 @@ NTSTATUS WINAPI NtLockFile( HANDLE file, HANDLE event, PIO_APC_ROUTINE apc, void if (apc || io_status || key) { FIXME("Unimplemented yet parameter\n"); - return STATUS_NOT_IMPLEMENTED; + //return STATUS_NOT_IMPLEMENTED; } if (apc_user && !warn++) FIXME("I/O completion on lock not implemented yet\n"); -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.