Re: Abiword unit / regression testing under Wine?

2009-04-19 Thread Austin English
On Fri, Apr 17, 2009 at 3:03 PM, Austin English wrote: > On Fri, Apr 17, 2009 at 10:06 AM, Dan Kegel wrote: >> It looks like you can build Abiword for Windows on Linux: >> http://abiword.com/mailinglists/abiword-dev/2008/Jan/0021.html >> Has anybody tried running the Abiword unit or regression te

Re: Janitor: list.h functions defined but not used

2009-04-19 Thread James McKenzie
Glenn L. McGrath wrote: > Hi all, im new to the list, im interested in grinding away at some of > the warnings wine generates... > > make depend was complaining about some static inline functions that it > thinks arent used, this patch uses __attribute__ ((used)) to disable the > warning. > > > Gl

Re: Janitor: list.h functions defined but not used

2009-04-19 Thread Jeremy White
Glenn L. McGrath wrote: > Hi all, im new to the list, im interested in grinding away at some of > the warnings wine generates... Welcome to Wine, and thanks! Be cautioned that open source projects can be brutal and mean places. I think Wine is one of the nicer ones, but that mostly means that ou

Re: Janitor: list.h functions defined but not used

2009-04-19 Thread Austin English
On Sun, Apr 19, 2009 at 8:00 PM, Glenn L. McGrath wrote: > Hi all, im new to the list, im interested in grinding away at some of > the warnings wine generates... > > make depend was complaining about some static inline functions that it > thinks arent used, this patch uses __attribute__ ((used)) t

Janitor: list.h functions defined but not used

2009-04-19 Thread Glenn L. McGrath
Hi all, im new to the list, im interested in grinding away at some of the warnings wine generates... make depend was complaining about some static inline functions that it thinks arent used, this patch uses __attribute__ ((used)) to disable the warning. Glenn diff --git a/include/wine/list.h b

Re: sxs: Implement a stub CreateAssemblyCache to make Publish or Perish install.

2009-04-19 Thread Andrew Nguyen
On Sun, Apr 19, 2009 at 5:04 PM, Kai Blin wrote: > On Sunday 19 April 2009 23:55:14 Kai Blin wrote: >> As mentioned by the authors of Publish or Perish in their FAQ >> (http://www.harzing.com/pop_faq.htm#Q309), Wine exporting sxs.dll and not >> providing a real CreateAssemblyCache function trips u

Re: sxs: Implement a stub CreateAssemblyCache to make Publish or Perish install.

2009-04-19 Thread Reece Dunn
2009/4/19 Kai Blin : > On Sunday 19 April 2009 23:55:14 Kai Blin wrote: >> As mentioned by the authors of Publish or Perish in their FAQ >> (http://www.harzing.com/pop_faq.htm#Q309), Wine exporting sxs.dll and not >> providing a real CreateAssemblyCache function trips up the installer. >> This patc

Re: sxs: Implement a stub CreateAssemblyCache to make Publish or Perish install.

2009-04-19 Thread Kai Blin
On Sunday 19 April 2009 23:55:14 Kai Blin wrote: > As mentioned by the authors of Publish or Perish in their FAQ > (http://www.harzing.com/pop_faq.htm#Q309), Wine exporting sxs.dll and not > providing a real CreateAssemblyCache function trips up the installer. > This patch allows Publish or Perish

Re: [PATCH 1/2] Handle refcount of lights when interacting with viewport.

2009-04-19 Thread Henri Verbeet
2009/4/19 Christian Costa : > @@ -760,6 +760,8 @@ IDirect3DViewportImpl_AddLight(IDirect3DViewport3 *iface, > lpDirect3DLightImpl->activate(lpDirect3DLightImpl); > } > > +IDirect3DLight_AddRef(lpDirect3DLight); > + > LeaveCriticalSection(&ddraw_cs); > return D3D_OK; > }

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Vitaliy Margolen
Paul TBBle Hampson wrote: > On Sun, Apr 19, 2009 at 10:48:11AM -0600, Vitaliy Margolen wrote: >> Paul TBBle Hampson wrote: >>> On Sun, Apr 19, 2009 at 12:46:20PM +0200, Stefan Dösinger wrote: Am Sonntag, 19. April 2009 10:41:34 schrieb Paul TBBle Hampson: > I've thrown together a rather-ro

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Paul TBBle Hampson
On Sun, Apr 19, 2009 at 10:48:11AM -0600, Vitaliy Margolen wrote: > Paul TBBle Hampson wrote: >> On Sun, Apr 19, 2009 at 12:46:20PM +0200, Stefan Dösinger wrote: >>> Am Sonntag, 19. April 2009 10:41:34 schrieb Paul TBBle Hampson: I've thrown together a rather-rough-but-working-in-a-limited-sen

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Vitaliy Margolen
Paul TBBle Hampson wrote: > Current limitations: > * Doesn't check for XInput2.h, so it won't build without it. (Laziness) > It will _run_ without XInput2, falling back to the current dinput > WndProc hooks even if compiled with XInput2 support. I don't think you need the entire separate list o

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Vitaliy Margolen
Paul TBBle Hampson wrote: > On Sun, Apr 19, 2009 at 12:46:20PM +0200, Stefan Dösinger wrote: >> Am Sonntag, 19. April 2009 10:41:34 schrieb Paul TBBle Hampson: >>> I've thrown together a rather-rough-but-working-in-a-limited-sense >>> implementation of XInput2-based DirectInput. > >>> * Doesn't ch

XI2 DirectInput mouse implementation RFC

2009-04-19 Thread Paul TBBle Hampson
I've thrown together a rather-rough-but-working-in-a-limited-sense implementation of XInput2-based DirectInput. It's got a fair few problems, I'm mainly interested in feedback on the approach, although obviously any code or style criticisms are welcome. Current limitations: * Doesn't check for XI

Re: wined3d: Fix prototype for EnumAdapterModes

2009-04-19 Thread Henri Verbeet
2009/4/19 Stefan Dösinger : > the code checked out currently, so I can't check. Maybe the calls and the > implementation match and just the .idl prototype is different. > Yeah, only the idl was wrong (but compatible).

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Paul TBBle Hampson
On Sun, Apr 19, 2009 at 09:46:17PM +1000, Paul TBBle Hampson wrote: > I'm attaching my DirectInput test program. It demonstrates both the > MSDN sample way of doing a background DI mouse reader, and also as it > happens a maybe-bug in Wine's DirectInput headers, in that you can't > use DIMOFS_X and

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Paul TBBle Hampson
On Sun, Apr 19, 2009 at 12:46:20PM +0200, Stefan Dösinger wrote: > Am Sonntag, 19. April 2009 10:41:34 schrieb Paul TBBle Hampson: >> I've thrown together a rather-rough-but-working-in-a-limited-sense >> implementation of XInput2-based DirectInput. >> * Doesn't check for XInput2.h, so it won't bui

Re: XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Stefan Dösinger
Am Sonntag, 19. April 2009 10:41:34 schrieb Paul TBBle Hampson: > (Resend, the first email never arrived. I didn't realise one of my > patches was 33k >_<) > > I've thrown together a rather-rough-but-working-in-a-limited-sense > implementation of XInput2-based DirectInput. > > It's got a fair few p

Re: wined3d: Fix prototype for EnumAdapterModes

2009-04-19 Thread Stefan Dösinger
Am Freitag, 17. April 2009 03:10:26 schrieb Brad Martin: > --- > include/wine/wined3d.idl |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/wine/wined3d.idl b/include/wine/wined3d.idl > index b8691a7..6f86688 100644 > --- a/include/wine/wined3d.idl > +++ b/incl

XI2 DirectInput mouse implementation RFC (Tarballed)

2009-04-19 Thread Paul TBBle Hampson
(Resend, the first email never arrived. I didn't realise one of my patches was 33k >_<) I've thrown together a rather-rough-but-working-in-a-limited-sense implementation of XInput2-based DirectInput. It's got a fair few problems, I'm mainly interested in feedback on the approach, although obvious

Re: Article on wine development strategy

2009-04-19 Thread Ben Klein
2009/4/19 Roderick Colenbrander : > On Sun, Apr 19, 2009 at 12:31 AM, Remco wrote: >> On Sat, Apr 18, 2009 at 11:36 PM, Henri Verbeet wrote: >>> 2009/4/18 Ben Klein : Right now, there's one thing bugging me: bug 14939. If Dan (or others) would like to implement a method of deferrin

Re: Article on wine development strategy

2009-04-19 Thread Roderick Colenbrander
On Sun, Apr 19, 2009 at 12:31 AM, Remco wrote: > On Sat, Apr 18, 2009 at 11:36 PM, Henri Verbeet wrote: >> 2009/4/18 Ben Klein : >>> >>> Right now, there's one thing bugging me: bug 14939. If Dan (or others) >>> would like to implement a method of deferring S3TC texture >>> decompression to the a