RE: Forwards exports - anyone?

2003-10-29 Thread Robert Shearman
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Shachar Shemesh > Sent: 29 October 2003 13:41 > To: Wine Devel > Subject: Forwards exports - anyone? > > > Hi all, > > I noticed in the code that there is a concept calle

Re: Forwards exports - anyone?

2003-10-29 Thread Rolf Kalbermatter
Shachar Shemesh <[EMAIL PROTECTED]> wrote: >I'm trying to implement unicows.dll. The theory is quite simple - since >unicows merely implements unicode functions that exist, theoretically, >only in Wine, all I have to do is create forwards (i.e. - ExtTextOutW in >unicows.dll will call ExtTextOut

Forwards exports - anyone?

2003-10-29 Thread Shachar Shemesh
Hi all, I noticed in the code that there is a concept called "forwad_export". Does it have anything to do with making a function in one DLL return a function address that belongs to another? If that is the case, how do I activate this? Is there some spec file magic that will do it? I'm trying