Re: Load .so error

2002-10-10 Thread Sylvain Petreolle
The error 2 is in many cases file not found. See include/winerror.h : 78:#define ERROR_FILE_NOT_FOUND 2 I already managed to load a .so recently but I can't get it to work on my new PC. The Windows dll was MyDll.dll which I turned now into a .so.

Re: Load .so error

2002-10-10 Thread Fabian Cenedese
I already managed to load a .so recently but I can't get it to work on my new PC. The Windows dll was MyDll.dll which I turned now into a .so. ELF_LoadLibraryExA is looking for a libMyDll.so but returns with error=2. I couldn't find out what this error means. I have my .so with same

Re: Load .so error

2002-10-10 Thread Martin Wilck
Am Don, 2002-10-10 um 09.16 schrieb Fabian Cenedese: new PC. The Windows dll was MyDll.dll which I turned now into a .so. ELF_LoadLibraryExA is looking for a libMyDll.so but returns with error=2. Rename your library to libmydll.so (all lower case) and try again. Wine will not load any

Re: Load .so error

2002-10-10 Thread Fabian Cenedese
new PC. The Windows dll was MyDll.dll which I turned now into a .so. ELF_LoadLibraryExA is looking for a libMyDll.so but returns with error=2. Rename your library to libmydll.so (all lower case) and try again. Wine will not load any Winelib library containing any non-lower-case

Load .so error

2002-10-09 Thread Fabian Cenedese
Hi I already managed to load a .so recently but I can't get it to work on my new PC. The Windows dll was MyDll.dll which I turned now into a .so. ELF_LoadLibraryExA is looking for a libMyDll.so but returns with error=2. I couldn't find out what this error means. I have my .so with same spelling