Re: loading windows DLL in a linux app

2007-05-22 Thread Damjan Jovanovic
On 5/22/07, ml <[EMAIL PROTECTED]> wrote: 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 int main(int argc, char**argv) { HMODULE dll; dll = LoadLibrary("atouch32.dll"); return 0; } c

loading windows DLL in a linux app

2007-05-22 Thread ml
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 int main(int argc, char**argv) { HMODULE dll; dll = LoadLibrary("atouch32.dll"); return 0; } compiled successfully but runtime fails with