Communication between native MacOS X application and WINE

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
nrdjcb
Newbie
Newbie
Posts: 4
Joined: Fri Apr 03, 2009 11:31 am

Communication between native MacOS X application and WINE

Post by nrdjcb »

Is communication between native MacOS X application and WINE possible?
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Communication between native MacOS X application and WINE

Post by austin987 »

On Fri, Apr 3, 2009 at 11:37 AM, nrdjcb <[email protected]> wrote:
Is communication between native MacOS X application and WINE possible?
What exactly do you mean? If you mean in the way Wine can interact
with native apps on other Unixes, then yes.

--
-Austin
nrdjcb
Newbie
Newbie
Posts: 4
Joined: Fri Apr 03, 2009 11:31 am

Post by nrdjcb »

I want to run a native MacOS X on Mac Intel which communicate with windows application running on WINE on the same Mac.
Thunderbird
Level 5
Level 5
Posts: 336
Joined: Mon Nov 24, 2008 8:10 am

Post by Thunderbird »

What do you mean by 'communication'? What do you want to achieve? Do apps need to share data or do you just want some app on wine to launch a osx app? Be more specific as not everything can be done.
nrdjcb
Newbie
Newbie
Posts: 4
Joined: Fri Apr 03, 2009 11:31 am

Post by nrdjcb »

I have an SDK (windows dll's) that I want to use/call from MacOS application. Is it possible?
Vincent Povirk

Communication between native MacOS X application and WINE

Post by Vincent Povirk »

On Fri, Apr 3, 2009 at 1:45 PM, nrdjcb <[email protected]> wrote:
I have an SDK (windows dll's) that I want to use/call from MacOS application. Is it possible?
Not directly.

You can create a winelib app. Winelib apps can use both native
libraries and windows DLL's. However, winelib demands the use of a
special compiler (winegcc), and this probably won't be reasonable for
your main application.

I suggest writing a winelib program to act as a bridge between your
application and the Windows DLL's.

Vincent Povirk
nrdjcb
Newbie
Newbie
Posts: 4
Joined: Fri Apr 03, 2009 11:31 am

Post by nrdjcb »

Thanks!!
Locked