-
Notifications
You must be signed in to change notification settings - Fork 41
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
Exit code appears when using _ffi.dlopen #132
Comments
I have no solid idea, but my guess would be that loading this DLL into the Python process just crashes; this might be because the DLL contains code to make sure that you don't try to load multiple incompatible versions of the basic "crt" runtime. I'm unsure what you are trying to do. If you want to call a basic function like |
Note: if I remember correctly, on Python 2.7 you could use Note 2: if you have the compiler toolchain, then you can just call Note 3: if all you want is call |
This is not my code. I encountered this error when importing the trio library, so I checked the source code of the library and found that the problem was caused by the code above. Thank you for your reply, I will take a closer look. |
I recently encountered an issue while executing the following Python code on my Windows 11 system:
Upon running this script, the process terminated abruptly with an exit code of -1073740791 (0xC0000409). I verified that the 'api-ms-win-crt-runtime-l1-1-0.dll' file is located in the C:\Windows\System32\downlevel directory. Could you please help me identify the cause of this problem?
The text was updated successfully, but these errors were encountered: