Displaying 2 results from an estimated 2 matches for "mydll".
Did you mean:
mdll
2003 Aug 27
0
Building a wine(lib) based shared library to link with a Linux application
Hi,
I'm trying to work out if and how I can port a windows dll to Linux and build a shared library that I can use in an ordinary Linux program.
To be more specific:
Supose I have sources for a Windows dll (mydll.c and mydll.def):
mydll.c
#include <windows.h>
int ShowBox(void)
{
MessageBox(NULL, "DLL", "DLL", MB_OK);
return 0;
}
mydll.def
LIBRARY "mydll"
DESCRIPTION 'Show a MessageBox'
EXPORTS
ShowBox @1
Is it possible with wine(lib) to buuild a...
2007 Sep 24
1
WINEDLLPATH doesn't work
Hi
I have some win32 DLL (native DLL) which is required to run my application.
If I copy the DLL to $HOME/.wine/drive_c/windows/system32/ ... my application
runs OK. But if I out the DLL to ... eg. $HOME/.wine/drive_c/myDLL
and doing following
export WINEDLLPATH=$HOME/.wine/drive_c/myDLL
wine myapp
wine simply complain that my DLL not found !!
Well, I really don't want to put everything under system32 ...
could someone tell me what's wrong with my setup ?
Regards
KC