Re: Wine 0.9 TODO

2004-02-03 Thread Dimitrie O. Paun
On February 3, 2004 06:57 pm, Mike Hearn wrote: > > 2. Exec-shield support (???) > > 3. Prelink support (???) > > Dimi, I saw you asking about this on IRC - yes, I am working on this, no, > no guarantees about timeframes. Sounds good. I'll mark you down on this task. > > 4. Version symbols

NHL2004 having problems with OLE?; Error output

2004-02-03 Thread Abdul-Haseeb Ahmad
Okay, so I'm running wine cvs from Feb3 - IE6 installed (installed it on wine20031212 via mike hearn's script and then just used that directory for winecvs) - NHL2004 Demo installed (ftp://ftp.ea.com/pub/easports/demos/nhl2004/NHL2004Demo.exe) & Full version installed - following settings: [AppD

Re: programs/winedbg/elf.c breaks non-Linux platforms

2004-02-03 Thread Gerald Pfeifer
On Tue, 3 Feb 2004, Eric Pouech wrote: >> elf.c: In function `DEBUG_ProcessElfFile': >> elf.c:344: error: `DT_NUM' undeclared (first use in this function) >> elf.c:344: error: (Each undeclared identifier is reported only once >> elf.c:344: error: for each function it appears in.) >> elf.c

Re: Wine 0.9 TODO

2004-02-03 Thread Mike Hearn
> 2. Exec-shield support (???) > 3. Prelink support (???) Dimi, I saw you asking about this on IRC - yes, I am working on this, no, no guarantees about timeframes. I have a prototype for a way that should fix it after Alexandres BSS hack and using linker scripts didn't come good. > 4. Versi

Re: Wineconf wrapup

2004-02-03 Thread Jeremy Newman
On Tue, 2004-02-03 at 16:49, Jeremy White wrote: > 4. The final, critical piece of advice > Don't type 'ifconfig eth0 down' in a terminal Window > on the Mac in an attempt to reinitialize it's DHCP > settings, unless you're dead certain you haven't > ssh'd over to the server th

Wineconf wrapup

2004-02-03 Thread Jeremy White
Hi all, Say, I wanted to thank everyone for coming to Wineconf 2004; as far as I can tell, a good time was had by all, and we may even have accomplished one or two useful things . I really appreciate that so many of you braved -30C temperature and two days of constant snowfall to come work with us

status of journal hook chain work

2004-02-03 Thread Bill Medland
I've just tripped over the fact that the journal hook chains are currently not implemented (and were disconnected in October 2002). Does anyone have any plans to do anything about them? -- Bill Medland mailto:[EMAIL PROTECTED] http://webhome.idirect.com/~kbmed

Re: programs/winedbg/elf.c breaks non-Linux platforms

2004-02-03 Thread Robert Lunnon
On Wednesday 04 February 2004 06:26, Eric Pouech wrote: > > elf.c: In function `DEBUG_ProcessElfFile': > > elf.c:344: error: `DT_NUM' undeclared (first use in this function) > > elf.c:344: error: (Each undeclared identifier is reported only once > > elf.c:344: error: for each function it ap

shlwapi.MLIsMLHInstance

2004-02-03 Thread Juan Lang
Anyone know anything about this function? I stubbed it to get around an occasional crash in native common controls, but I'm not positive the function signature's correct. --Juan __ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://web

Re: programs/winedbg/elf.c breaks non-Linux platforms

2004-02-03 Thread Eric Pouech
elf.c: In function `DEBUG_ProcessElfFile': elf.c:344: error: `DT_NUM' undeclared (first use in this function) elf.c:344: error: (Each undeclared identifier is reported only once elf.c:344: error: for each function it appears in.) elf.c:344: error: `DT_PROCNUM' undeclared (first use in thi

Re: ListView painting (was Re: Mouse up vs Mouse click)

2004-02-03 Thread Maxime Bellengé
I think there are still problems with that patch because, in emule when I change the size of a column, the selected row is not repainted correctly, only some area of it are. The style is fullrowselect and ownerdraw. Only the new space of the column whose size has increased is repainted correctly.

programs/winedbg/elf.c breaks non-Linux platforms

2004-02-03 Thread Gerald Pfeifer
Hi, I'm afraid the following patch which added programs/winedbg/elf.c date: 2004/02/03 00:14:12; author: julliard; state: Exp; Eric Pouech <[EMAIL PROTECTED]> - now detecting Dwarf debug information in ELF modules (but don't load it) - separated module management (pe.c, elf.c) from

Re: Sourceforge WIne RPMs and Yum

2004-02-03 Thread Dwayne Bailey
Hi, Are there any yum experts here? I thought it would be a good idea to get a yum repository established for the Wine RPMs held at sourceforge. I for one would love to have the latest build of wine installed as soon as RPMs are available on Sourceforge. yum-arch seems to be the command to c

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Fabian Cenedese
>> >> This fails on on my computer and I don't >> >> know how wine could detect if it's a headerless picture or no picture at all >> >> if they look the same (so far). >> > >> >Maybe check header[0] to be real .bmp or .gif magic and header[1] for >> >zero? >> >> I couldn't see a difference, always

Re: Wine 0.9 TODO

2004-02-03 Thread Dimitrie O. Paun
On February 3, 2004 02:56 am, Lars Segerlund wrote: > I am curious about 'testing daemon to run as windows service' [I'm Cc:-ing wine-devel, other may be interested in this as well] This TODO item has nothing to do with running services under Wine. What this is instead is a real Win32 service fo

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Kirill Smelkov
On Tue, 3 Feb 2004, Fabian Cenedese wrote: > > >> >In my case there are lots of *.bmp (with picture) with exactly same header > >> >i mentioned. Thus header[1]==0 doesnt imply 'there is no picture at all' > >> > > >> >This pictures came in ole storage taken from a real win32 app, and loading > >>

buffer too small for currency

2004-02-03 Thread Fabian Cenedese
Hi I get this warning when I try to start a basic program. This comes from the function VARIANT_GetLocalisedNumberChars. I added some printfs and found that my currency is apparently "SFr.", so 4 chars plus zero which is too much for the 4 char buffer. Strange though that on the command line it lo

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Fabian Cenedese
>> >In my case there are lots of *.bmp (with picture) with exactly same header >> >i mentioned. Thus header[1]==0 doesnt imply 'there is no picture at all' >> > >> >This pictures came in ole storage taken from a real win32 app, and loading >> >them on windows works correctly. >> >> Do you have VB6

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Kirill Smelkov
On Tue, 3 Feb 2004, Fabian Cenedese wrote: > > >> I don't think that this is correct. If header[1] is 0 then it means that there is > >> no picture at > >> all, and not a picture without header (me thinks). When trying to start a program > >> that uses > >> the SSTab from TabCtl32.ocx without ha

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Fabian Cenedese
>> I don't think that this is correct. If header[1] is 0 then it means that there is >> no picture at >> all, and not a picture without header (me thinks). When trying to start a program >> that uses >> the SSTab from TabCtl32.ocx without having assigned icons to the tabs it fails >> because >>

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Kirill Smelkov
On Tue, 3 Feb 2004, Fabian Cenedese wrote: > > >Hi, > >In my case headerless bitmaps have > >{ 0x42, 0x4d, 0x9c, 0xbd, 0x00, 0x00, 0x00, 0x00 } first 8 bytes. > > > >So, when last four are equal to zero its 'no header' case. > > > >ChangeLog: > >OLEPictureImpl_Load: fix for headerless pict

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-03 Thread Fabian Cenedese
>Hi, >In my case headerless bitmaps have >{ 0x42, 0x4d, 0x9c, 0xbd, 0x00, 0x00, 0x00, 0x00 } first 8 bytes. > >So, when last four are equal to zero its 'no header' case. > >ChangeLog: >OLEPictureImpl_Load: fix for headerless pictures > >Index: dlls/oleaut32/olepicture.c >==