Hi!
I have a third party library which is a Windows DLL. Is it possible to use Wine to call its functions under Linux? I tried a simple code
#include <library.h>
int main(int argc, char**argv) { HMODULE dll; dll = LoadLibrary("atouch32.dll"); return 0; }
compiled successfully but runtime fails with "Segmentation fault". Perhaps I missed some initialization.
I didn't found any examples of Wine API usage. Can anyone give me any clue?
Thank you!
David