Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Dimitrie O. Paun
On February 4, 2004 05:20 pm, [EMAIL PROTECTED] wrote: > I'm pretty sure lots of other wine code uses 2 space indents, I know I > started using them after working with wine. Yes, other code does so, but I think the preferred style is 4-space. Now, as I said, if you feel strongly about it, it wil

Re: 32bpp bitmaps

2004-02-04 Thread Kevin Koltzau
On Wednesday 04 February 2004 10:32 pm, Kevin Koltzau wrote: > I am loading a 32bpp bitmap from resources of a dll, but under wine its > being reported as 24 bit..for example I think I actually found the answer to my own question..I'm always getting the bpp of my X server.. Is this one of those t

32bpp bitmaps

2004-02-04 Thread Kevin Koltzau
I am loading a 32bpp bitmap from resources of a dll, but under wine its being reported as 24 bit..for example void main() { HMODULE hTheme = LoadLibrary("C:\\Windows\\Resources\\Themes\\Luna\\Luna.msstyles"); HBITMAP hBmp = LoadBitmap(hTheme, "BLUE_BUTTON_BMP"); BITMAP bmp; GetOb

Re: winedbg fixup

2004-02-04 Thread Dmitry Timoshkov
"Eric Pouech" <[EMAIL PROTECTED]> wrote: > +static unsigned is_dt_flag_valid(unsigned d_tag) > +{ > +#ifndef DT_PROCNUM > +#define DT_PROCNUM 0 > +#endif > +#ifndef DT_EXTRANUM > +#define DT_PROCNUM 0 > +#endif Shouldn't in the latter case it be: #ifndef DT_EXTRANUM #define DT_EXTRANUM 0 #endif

Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Chris Morgan
On Wednesday 04 February 2004 06:56 pm, Mike Hearn wrote: > On Wed, 04 Feb 2004 17:20:59 -0500, chmorgan wrote: > > The x11 tab is global settings only at this point. I think we can > > remove a couple of options on this tab, UseRandR is the only one I can > > think of atm. > > I'd not be happy wi

Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Lionel Ulmer
> From some chatting in IRC, a possible work-around for the panning in > XVidMode is to just grab the pointer if you switch to a smaller > resolution and an app creates a window intended to fill the smaller > resolution up. Grabbing the mouse is not a trivial thing to do (as in X11, if you gr

Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Alex Pasadyn
Mike Hearn wrote: I'd not be happy with removing that - XrandR solves some problems and introduces others - namely that the desktop panel applets/icons etc rearrange themselves for the lower resolution then sometimes don't rearrange back. Using XVidmode has the advantage that the desktop size doesn

Re: Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Lionel Ulmer
> I'd not be happy with removing that - XrandR solves some problems and > introduces others - namely that the desktop panel applets/icons etc > rearrange themselves for the lower resolution then sometimes don't > rearrange back. But is what 'real' Windows does (as it sometimes messes also my Windo

Re: Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Mike Hearn
On Wed, 04 Feb 2004 17:20:59 -0500, chmorgan wrote: > The x11 tab is global settings only at this point. I think we can > remove a couple of options on this tab, UseRandR is the only one I can > think of atm. I'd not be happy with removing that - XrandR solves some problems and introduces other

Re: Installing MS Windows Script 5.6

2004-02-04 Thread Abdul-Haseeb Ahmad
okay i managed to install it by adding these registry entries: [Software\\Classes\\CLSID\\{0002E005---C000-0046}] 1062013979 @="StdComponentCategoriesMgr" [Software\\Classes\\CLSID\\{0002E005---C000-0046}\\InProcServer32] 1062013979 @="comcat.dll" "ThreadingModel

Installing MS Windows Script 5.6

2004-02-04 Thread Abdul-Haseeb Ahmad
Has anyone managed to intstall either the 9x or NT/XP version of windows script 5.6 (http://msdn.microsoft.com/library/default.asp?url=/downloads/list/webdev.asp)? I get an error registering the OCX wshom.ocx when it installs; I had to use a native MFC42.DLL to get vbscript.dll to register. I'm

Re: Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread chmorgan
I'm pretty sure lots of other wine code uses 2 space indents, I know I started using them after working with wine. No other comments on the ui changes in winecfg? ;-) I'll submit to wine-patches tonight after going through the code once more. The x11 tab is global settings only at this point

Re: [ddraw] asynchronous screen updates

2004-02-04 Thread Lionel Ulmer
> Then I would be drawing rectangles which are not ready for a redraw yet. Does > UnLock release only last lock or all locks on these old DX versions? Well, you need to store the rectangle at Lock time but only draw it at Unlock time. And I have no idea if any game ever does concurrent locks (so

Re: Investigating the XInitThreads deadlock bug

2004-02-04 Thread Alexandre Julliard
"Sami Aario" <[EMAIL PROTECTED]> writes: > See how after four calls to RtlEnterCriticalSection, LockCount starts to be > 0? So a pretty good theory is that the critical section is acquired, and > then not released, during the loading and initialization of > /usr/X11R6/lib/libXrender.so.1. Most li

Re: DIB_DirectDrawSurface_BltFast signed/unsigned comparision bug

2004-02-04 Thread Lionel Ulmer
> Are you sure about this? Isn't INVALIDRECT returned in this case? I am asking > these questions, because I could not find any documentation in MSDN > explaining when is INVALIDRECT returned. Do you have any test results? Maybe > I should write a test? Well, MSDN usually does not document at a

Re: App compiled with Delphi5 works, same App with Delphi7 does not.

2004-02-04 Thread Mike Hearn
This should be fixed in CVS, please upgrade and try again. thanks -mike

Re: Wine 0.9 TODO

2004-02-04 Thread Mike Hearn
On Tue, 03 Feb 2004 22:04:18 -0500, Dimitrie O. Paun wrote: > Alexandre said it should be fairly simple to do, especially first time > around :) It gets a bit trickier later in that you have to be careful > to do the versioning right, but nothing overly complicated. GNU symbol versioning isn't so

Re: ntdll / kernel32: #49

2004-02-04 Thread Dimitrie O. Paun
On Wed, 4 Feb 2004, Eric Pouech wrote: > that's all for now Ahhh, so disappointing! We were expecting a cool patch... :))) -- Dimi. P.S. Man, you rock! This is way, way cool!!!

Investigating the XInitThreads deadlock bug

2004-02-04 Thread Sami Aario
Hi all, I decided to investigate this old bug: http://www.winehq.com/hypermail/wine-devel/2003/12/0158.html even though Alexander removed thread initialization from x11drv. So the first thing I did was apply this patch: Index: x11drv_main.c ==

Re: [Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Dimitrie O. Paun
On Tue, 3 Feb 2004, Chris Morgan wrote: > Comments, questions, suggestions welcome ;-) The one complaint I have is that it changes the 4-space indentation to 2-space indentation, which makes the code so much harder to follow. I know, you're doing the work, so you get to chose :), but if it's not

Re: App compiled with Delphi5 works, same App with Delphi7 does not.

2004-02-04 Thread Uwe Bonnes
> "Samuel" == Samuel Herzog <[EMAIL PROTECTED]> writes: Samuel> Dear Newsgroup, I have downloaded and installed Release Samuel> 20040121. Samuel> I have a very small application (for testing purpose) which I Samuel> can compile with Delphi 5,Delphi 6,Delphi 7. The application

Orkut community for wine

2004-02-04 Thread Shachar Shemesh
Hi all, Just so noone else create another community, I have created an Orkut community for Wine. It's located at http://www.orkut.com/Community.aspx?cmm=8767. Sorry about the noise. Shachar -- Shachar Shemesh Lingnu Open Systems Consulting http://www.lingnu.com/

[Winecfg] - redo applications tab, misc changes

2004-02-04 Thread Chris Morgan
* programs/winecfg/En.rc, appdefaults.c, properties.c, properties.h, resource.h, winecfg.h, x11drvdlg.c, Es.rc, Pt.rc, Ru.rc, Si.rc Chris Morgan <[EMAIL PROTECTED]> Rename 'General tab' to 'About', move to the last position. Make applications tab handle global and per-app winver, dosver and wine

App compiled with Delphi5 works, same App with Delphi7 does not.

2004-02-04 Thread Samuel Herzog
Dear Newsgroup, I have downloaded and installed Release 20040121. I have a very small application (for testing purpose) which I can compile with Delphi 5,Delphi 6,Delphi 7. The application compiled with Delphi5 works fine. The same application compiled with Delphi7 shows an exception . Any hints

Unable to compile under FreeBSD 4.8

2004-02-04 Thread CyberBotX
I've been trying to compile the latest version of WINE (1-21-2004) under FreeBSD 4.8-RELEASE, but it keeps failing on me with the following during the compile of glu32: gcc -shared -Wl,-Bsymbolic,-z,defs,-init,__wine_spec_init,-fini,__wine_spec_ fini glu32.spec.oglu.o glu32.dll.dbg.o -o glu32

Re: Wineconf wrapup

2004-02-04 Thread Brian Vincent (C)
Title: Re: Wineconf wrapup > 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 . fyi, I posted a summary in the form of a WWN issue: http://www.winehq.com/?issue=208

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

2004-02-04 Thread Rein Klazes
On Wed, 4 Feb 2004 08:20:46 -0500, you wrote: > On February 4, 2004 03:39 am, Rein Klazes wrote: > > Column resizing still has it repaint problems, but it had this in some > > form forever. > > Can you please file a bug in bugzilla, and assign it to me? Done, bug #1992 Rein. -- Rein Klazes [EM

PPDEV: Allow to switch direction of the printer port

2004-02-04 Thread Uwe Bonnes
Changelog: dlls/winedos/ppdev.c:IO_pp_outp Allow to switch direction of the printer port This lets mitoujtag.exe access the Jtag chain via the parallel port and a Xilinx parallel cable. -- Uwe Bonnes[EMAIL PROTECTED] Institut fuer Kernphysik Schlossgartenstrasse

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

2004-02-04 Thread Dimitrie O. Paun
On February 4, 2004 03:39 am, Rein Klazes wrote: > Column resizing still has it repaint problems, but it had this in some > form forever. Can you please file a bug in bugzilla, and assign it to me? -- Dimi.

Re: Wine 0.9 TODO

2004-02-04 Thread Dimitrie O. Paun
On February 4, 2004 04:28 am, Tom wrote: > What do you think of this as the new 0.9 todo_lists? :-) Looks very good. A few things: A.1: status: histrory sent for inclusion A.2: status: working code http://afavant.elte.hu/~wferi/wine/";>available A.3: status: some working code available A.4: statu

Re: Wine 0.9 TODO

2004-02-04 Thread Tom
Dimitrie O Paun wrote: Hi folks, Hi Dimi, What do you think of this as the new 0.9 todo_lists? :-) Tom To Do Lists The following To Do lists is what the Wine development team need's to accomplish for a Wine version 0.9 release. A. WineHQ work History page [IN PROGRESS]

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-04 Thread Fabian Cenedese
>> >Then what type of picture it is? >> > >> >0x4947 GIF >> >0xd8ff JPEG >> >0x4d42 BMP >> >0x ICON >> >0x746c ??? >> >> Well, as I didn't use any pictures I don't know what it's supposed to be. >> Might as well be "NoPic" :) But I have also seen this marker where the >> second field was

Re: OLEPictureImpl_Load: fix for headerless pictures

2004-02-04 Thread Kirill Smelkov
On Tue, 3 Feb 2004, Fabian Cenedese wrote: > > >> >> 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]

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

2004-02-04 Thread Rein Klazes
On Tue, 03 Feb 2004 20:53:17 +0100, you wrote: > 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

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

2004-02-04 Thread Fabian Cenedese
>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 >cor