Are there any was to link my program with Wine-compiled part?
Posted
by seas
on Stack Overflow
See other posts from Stack Overflow
or by seas
Published on 2010-04-11T15:09:30Z
Indexed on
2010/04/11
15:13 UTC
Read the original article
Hit count: 227
I am trying to use windows dll functionality in Linux. My current solution is a compilation of a separate wine application, that uses dll and transfer requests/responses between dll and main application over IPC.
This works, but is a real overhead comparing to a simple dll calls.
I see that wine-compiled program usually is a bootstrapping-script and some .so, which (according to file utility) is normal linux dynamically linked library.
Are there any way to link that .so directly to my application? Are there any manual?
© Stack Overflow or respective owner