Linking with winelib

2004-09-09 Thread Nikolay A. Liber
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 ./wineli

Using winelib in python module

2004-09-06 Thread Nikolay A. Liber
Hi All Have anybody tried to use winelib in python modules? I need to make python bindings to some propritary DLL that available as a binary only. I made shared library that simply dynamicaly loads that DLL using winelib mono hack. It works perfectly when I link it with simple C test program b