Re: include: Only include winuser.h in oleidl.idl as a replacement for windows.h when compiling the Wine source.

2011-12-29 Thread Alexandre Julliard
Francois Gouget writes: > Substituting an alternative header for windows.h is an approach that is > used in a few other places, specifically in dshow.h, msctf.h, pdh.h, > rpc.h, snmp.h and winsock.h. So I think it's ok to follow the pattern > here, it should just be a bit clearer. > > But if t

Re: include: Only include winuser.h in oleidl.idl as a replacement for windows.h when compiling the Wine source.

2011-12-28 Thread Francois Gouget
On Wed, 28 Dec 2011, Jacek Caban wrote: > Hi Francois, > > On 12/28/11 10:39, Francois Gouget wrote: > > -cpp_quote("#include") > > +cpp_quote("#ifdef __WINESRC__") > > +cpp_quote("# include") > > +cpp_quote("#endif") > > > > > > /**

Re: include: Only include winuser.h in oleidl.idl as a replacement for windows.h when compiling the Wine source.

2011-12-28 Thread Jacek Caban
Hi Francois, On 12/28/11 10:39, Francois Gouget wrote: -cpp_quote("#include") +cpp_quote("#ifdef __WINESRC__") +cpp_quote("# include") +cpp_quote("#endif") /* * IOleTypes interface How about entirely removing tha

Re: winuser.h : remove a fixme and "add" some things

2004-11-06 Thread Dmitry Timoshkov
"Rémi Assailly" <[EMAIL PROTECTED]> wrote: > Excuse me, > I did not want to write that ULONG_PTR is 32 in Win32 _and_ Win64, but I > wanted to write that ULONG_PTR and DWORD were the same. I was wrong here > : DWORD is always 32bits, no ? Right, DWORD is a 32-bit entity in both Win32 and Win64.

Re: winuser.h : remove a fixme and "add" some things

2004-11-06 Thread Dmitry Timoshkov
"Rémi Assailly" <[EMAIL PROTECTED]> wrote: > There were a fixme warning us that a structure were not sure ( line 1898 ). > I checked it and it seems correct. The only differences I found are : > - ULONG_PTR dwItemData instead of DWORD dwItemData which is the same > thing with win32 and also win64

Re: RFH: winuser.h

2004-10-16 Thread Francois Gouget
On Thu, 14 Oct 2004, Dimitrie O. Paun wrote: Can someone please help me with the value of LBS_COMBOBOX? According to the Platform SDK its value is 0x8000L. -- Francois Gouget [EMAIL PROTECTED]http://fgouget.free.fr/ 1 + e ^ ( i * pi ) = 0

RFH: winuser.h

2004-10-14 Thread Dimitrie O. Paun
Can someone please help me with the value of LBS_COMBOBOX? TIA, Dimi.

Re: winuser.h

2004-10-07 Thread Jon Griffiths
Hi, > ODS_NOACCEL 0x0100 > ODS_NOFOCUSRECT 0x0200 Thanks for that, I've updated the patch. Cheers, Jon = "Don't wait for the seas to part, or messiahs to come; Don't you sit around and waste this chance..." - Live [EMAIL PROTECTED] ___ Do yo

Re: winuser.h

2004-10-07 Thread Andreas Mohr
Hi, On Thu, Oct 07, 2004 at 07:24:07AM -0700, Jon Griffiths wrote: > Hi, > > Needed for part of my app to compile. Could someone with a recent SDK > find the correct values for ODS_NOACCEL & ODS_NOFOCUSRECT? ODS_NOACCEL 0x0100 ODS_NOFOCUSRECT 0x0200 both defined for _WIN32_WINNT >= 0x0500 only.