Hello
I am using winelib with Mono hack to load windows DLL into python module. There is a dummy function wine_pthread_init_thread in libwine.so. wine_pthread_init_thread implemented in winelib.so.exe from mono shared winelib. I link module.
gcc -shared mymodule.so module_code.o -lwine ./winelib.so.exe
But when I load module init_thread from ntdll calls dummy wine_pthread_init_thread. How to override that dumy function?
Thank you
Nikolay