re: Potential forum at linuxquestions.org

2003-11-11 Thread Dan Kegel
Mike Hearn wrote: It's not meant to replace wine-users, and especially not wine-devel of course. Why a forum rather than a mailing list? That question, plus all the 'advantages' you list, indicate that you do indeed intend it to replace wine-users, at least for some users. A web interface that let

Re: I/O Completion Ports Implementation

2003-11-11 Thread Alexandre Julliard
"Robert Shearman" <[EMAIL PROTECTED]> writes: > In remove_io_completion: > > +port->satisfied = 0; /* don't abandon wait on the port */ > +select_on(1, req->cookie, &req->handle, SELECT_TIMEOUT, > &req->timeout); > +port->satisfied = 1; /* abandon any waits on the port imme

RE: I/O Completion Ports Implementation

2003-11-11 Thread Robert Shearman
> -Original Message- > From: Alexandre Julliard [mailto:[EMAIL PROTECTED] > Sent: 12 November 2003 00:06 > To: Robert Shearman > Cc: [EMAIL PROTECTED] > Subject: Re: I/O Completion Ports Implementation > > > "Robert Shearman" <[EMAIL PROTECTED]> writes: > > > WaitForSingleObject(hIoCompleti

Re: suggestion: Get native uxtheme and native common controlls working on WINE and ReactOS

2003-11-11 Thread Kevin Koltzau
On Tuesday 11 November 2003 05:26 am, Jonathan Wilson wrote: > Is such a thing possible or not? > i.e. getting uxtheme, the existing themes and the common controls dll > (various versions of it) working on ROS or Wine fesable? It is not possible to get native uxtheme from an XP installation workin

Re: Cross-platform resource API

2003-11-11 Thread Alexandre Julliard
Jean-Claude Gervais <[EMAIL PROTECTED]> writes: > That's why I was wondering if the resource-manipulation routines can > read .RES files, which should (in theory) be platform independant. > > OK, so in essence, what I am looking for is portable code that will be > able to walk a .RES f

Re: I/O Completion Ports Implementation

2003-11-11 Thread Alexandre Julliard
"Robert Shearman" <[EMAIL PROTECTED]> writes: > WaitForSingleObject(hIoCompletion, INFINITE) returns straight away with > WAIT_OBJECT_0 on Windows. Using it would break this behaviour (which of > course any sane apps would not depend on). I must be missing something, but I don't see how your code

RE: I/O Completion Ports Implementation

2003-11-11 Thread Robert Shearman
> -Original Message- > From: Alexandre Julliard [mailto:[EMAIL PROTECTED] > Sent: 11 November 2003 21:03 > To: Robert Shearman > Cc: [EMAIL PROTECTED] > Subject: Re: I/O Completion Ports Implementation > > Robert Shearman <[EMAIL PROTECTED]> writes: > > > This has been hanging around in my

Usage of FAR in libraries

2003-11-11 Thread Vincent Béron
How are we supposed to handle includes from other libs (while compiling Wine) which use FAR? I don't like the idea of #undef FAR, then #include, then #undef FAR and #define FAR do_not_use_this_in_wine. Somebody have a better idea? This prevents proper compilation on Fedora Core 1 for now (when op

Re: old addition: winetests

2003-11-11 Thread Ferenc Wagner
Mike Hearn <[EMAIL PROTECTED]> writes: > On Tue, 11 Nov 2003 11:56:56 +0100, Sir Ferenc Wagner scribed thus: > >>> I think he did but... SMTP is a horrible protocol. HTTP >>> is sweet. :-) >> >> They got complicated the same way when the machine is behind >> a firewall or proxy, I am afraid. It

Re: shell32: implement flag FWF_DESKTOP for IShellView_fnCreateViewWindow()

2003-11-11 Thread Martin Fuchs
On 11.11.2003 22:49:30 Martin Fuchs wrote: > Changelog: > implemented flag FWF_DESKTOP for IShellView_fnCreateViewWindow() Please don't apply this patch. The patch of Filip Navara already contains FWF_DESKTOP handling.

Re: Make failed, something about D3D8 & D3Dcore...

2003-11-11 Thread Raphaël Junqueira
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le Mardi 11 Novembre 2003 18:13, Thomas Brix Larsen a écrit : > Hi, > after updating CVS today I get the following errors from make: > > In file included from d3d8_private.h:220, > from basetexture.c:31: > d3dcore_gl.h:161: syntax erro

Re: asm help

2003-11-11 Thread Shachar Shemesh
Marcus Meissner wrote: On Tue, Nov 11, 2003 at 04:51:12PM +0300, flyker wrote: Can anybody help me write the function for Linux : __declspec(naked) BOOL WINAPI _InitCommonControlsEx(INITCOMMONCONTROLSEX* lpInitCtrls) { if(!dwLPA_InitCommonControlsEx) { __asm mov eax, 0 __asm r

Re: mailman list problems

2003-11-11 Thread Shachar Shemesh
Jeremy Newman wrote: Hey all, just dropping a note about the recent inactivity on the list. Apparently mailman has a bug where a spam with a malformatted header can crash the queue processing. This is easy enough to fix, just delete the offending message from the queue. It happened for a second ti

Re: asm help

2003-11-11 Thread Marcus Meissner
On Tue, Nov 11, 2003 at 04:51:12PM +0300, flyker wrote: > Can anybody help me write the function for Linux : > > __declspec(naked) BOOL WINAPI > _InitCommonControlsEx(INITCOMMONCONTROLSEX* lpInitCtrls) > { >if(!dwLPA_InitCommonControlsEx) >{ >__asm mov eax, 0 >__asm ret 4

Re: Regression on ntdll:map_image function

2003-11-11 Thread Carlos Lozano
El mar, 11 de nov de 2003, a las 11:48, Alexandre Julliard escribio: > > This should fix it: [...] Yes, it is fixed :)), well done :) Thanks, Regards, Carlos. -- ___ _ \ | / Consulting | . |._ _ _| | ___ ___ ___http://www.andago.com | || ' |/ . |<_> |/ . |/ . \__

Re: old addition: winetests

2003-11-11 Thread Jakob Eriksson
Ferenc Wagner wrote: Jakob Eriksson <[EMAIL PROTECTED]> writes: I think he did but... SMTP is a horrible protocol. HTTP is sweet. :-) They got complicated the same way when the machine is behind a firewall or proxy, I am afraid. It's a pity Windows does not have a standard mailer...

Re: I/O Completion Ports Implementation

2003-11-11 Thread Alexandre Julliard
Robert Shearman <[EMAIL PROTECTED]> writes: > This has been hanging around in my tree for a while. This is useful for RPC > and for eventually implementing QueueUserWorkItem. > > Changelog: > Implement I/O completion ports You should use the normal waiting mechanisms, instead of creating a new t

Re: PATCH: handle non aligned mmaps of sections

2003-11-11 Thread Alexandre Julliard
Marcus Meissner <[EMAIL PROTECTED]> writes: > The file itself is page aligned in these cases, so don't get bad > overlaps. > > This is in a codepath which did not trigger before, this is just new > with WDM handling. I don't think it makes sense to use the normal mapping code for such files, we s

Re: Cross-platform resource API

2003-11-11 Thread Jean-Claude Gervais
Thank you very much, Eric, For taking the time to help me. I'm afraid I may not have explained my problem very clearly: First, if I use Winelib, must I bind the resources to my executable? The reason I ask is because since I am developing an application for the Mac, can I

Re: Cross-platform resource API

2003-11-11 Thread Eric Pouech
Jean-Claude Gervais wrote: Hello, I'm currently porting a Windows application to the Mac and Linux. I've got many details worked out but the one that I am still researching is how to load resources like strings and bitmaps. What I would like to do is distribute the resources the application uses

Re: PATCH: dlls/wineps/type42.c

2003-11-11 Thread Alexandre Julliard
Gerald Pfeifer <[EMAIL PROTECTED]> writes: > I wonder, how our Type42 support ever could have worked given the > following: > > type42.c: In function `T42_download_header': > type42.c:269: warning: int format, DWORD arg (arg 3) > type42.c:269: warning: int format, DWORD arg (arg 4) > type4

Re: Regression on ntdll:map_image function

2003-11-11 Thread Alexandre Julliard
Carlos Lozano <[EMAIL PROTECTED]> writes: > The problem happens in this line of the patch: > > -if (!(view = VIRTUAL_CreateView( ptr, total_size, 0, > VPROT_COMMITTED|VPROT_READ, hmapping ))) > +if (!(view = VIRTUAL_CreateView( ptr, total_size, 0, > + V

Re: wrc doesn't seem to accept -r option,even though it is automatically generated by make file

2003-11-11 Thread Parzival Herzog
On November 11, 2003 11:39, Ivan Leo Murray-Smith wrote: > I don't know how to solve your problem, but it would be a good idea if you > just installed > the latest CVS version. I' just too inexperienced and too isolated to use CVS right now: an 800 page manual, configuring, using SSH, it threa

Cross-platform resource API

2003-11-11 Thread Jean-Claude Gervais
Hello, I'm currently porting a Windows application to the Mac and Linux. I've got many details worked out but the one that I am still researching is how to load resources like strings and bitmaps. What I would like to do is distribute the resources the application uses as a .RES file that I woul

Re: wrc doesn't seem to accept -r option,even though it is automatically generated by make file

2003-11-11 Thread Ivan Leo Murray-Smith
>I am not a wine "developer" (too ignorant for that), I >am a (potential) user of the wine library, Well I think you have better chances of getting an answer on wine-devel, as I think only a few developers read wine-users. >do I need to un-install my present wine installation? Yes, but you can lea

Make failed, something about D3D8 & D3Dcore...

2003-11-11 Thread Thomas Brix Larsen
Hi, after updating CVS today I get the following errors from make: In file included from d3d8_private.h:220, from basetexture.c:31: d3dcore_gl.h:161: syntax error before '*' token d3dcore_gl.h:161: warning: type defaults to `int' in declaration of `PGLXFNGLXGETFBCONFIGSPROC' d3dco

Re: [ros-kernel] SEH question

2003-11-11 Thread Steven Edwards
Hello Jon, I have talked with some people in Borland legal and they have offered to talk with us about a price. I'm sorry but any price for this is to much. I dont see how we can legaly license a patent and ship the product as GPL/LGPL. I think the patent is invalid and besides our current implemen

Re: old addition: winetests

2003-11-11 Thread Jakob Eriksson
On Tue, Nov 11, 2003 at 04:18:20AM +0100, Ferenc Wagner wrote: > Hello, > > I am making slow progress with this thing. It grew sort of > usable: can be cross compiled and run to produce sensible > output (tested on XP only). Present questions: Ahh! Progress, sweet! :-) > 4. Did Jon Bright co

Re: [ros-general] Re: copy protection - was: Re: Is it time for playing games on WINE?

2003-11-11 Thread Jan Kratochvil
Hi, On Tue, 11 Nov 2003 03:05:55 +0100, KJK::Hyperion wrote: > At 02.11 11/11/2003, Steven Edwards wrote: > >>Further run fails for Captive as 'secdrv.sys' is somehow broken driver as > >>it does not provide any way to mount a filesystem. :-? > > secdrv isn't a filesystem, nor a volume driver.

Re: old addition: winetests

2003-11-11 Thread Mike Hearn
On Tue, 11 Nov 2003 11:56:56 +0100, Sir Ferenc Wagner scribed thus: >> I think he did but... SMTP is a horrible protocol. HTTP >> is sweet. :-) > > They got complicated the same way when the machine is behind > a firewall or proxy, I am afraid. It's a pity Windows does > not have a standard mai

mailman list problems

2003-11-11 Thread Jeremy Newman
Hey all, just dropping a note about the recent inactivity on the list. Apparently mailman has a bug where a spam with a malformatted header can crash the queue processing. This is easy enough to fix, just delete the offending message from the queue. It happened for a second time in a week now. Jus

asm help

2003-11-11 Thread flyker
Can anybody help me write the function for Linux : __declspec(naked) BOOL WINAPI _InitCommonControlsEx(INITCOMMONCONTROLSEX* lpInitCtrls) { if(!dwLPA_InitCommonControlsEx) { __asm mov eax, 0 __asm ret 4 } else { __asm jmp dwLPA_InitCommonControlsEx } } May

Re: old addition: winetests

2003-11-11 Thread Dimitrie O. Paun
On November 11, 2003 05:53 am, Ferenc Wagner wrote: > Sounds good enough. The question was about the Makefile, > though. I don't know the build system, unfortunately, so I > don't even know if it has the necessary basis for this. It has no basis for it, I guess we'll just need to create differen

Re: Potential forum at linuxquestions.org

2003-11-11 Thread Mike Hearn
On Mon, 10 Nov 2003 13:00:04 -0800, Sir Duane Clark scribed thus: > If you see this, then posting via gmane works fine. I've been doing it > for quite awhile now. I meant via the web interface...

Re: old addition: winetests

2003-11-11 Thread Ferenc Wagner
Jakob Eriksson <[EMAIL PROTECTED]> writes: > On Tue, Nov 11, 2003 at 04:18:20AM +0100, Ferenc Wagner wrote: > >> 4. Did Jon Bright contribute his SMTP client in the end? >>We could as well use it... Or would it be better (more >>reliable) to POST it through HTTP? > > I think he did but...

Re: Zombies (was : Conformance tests...)

2003-11-11 Thread Paul Millar
On Sat, 8 Nov 2003, [iso-8859-1] Sylvain Petreolle wrote: > The execution of the attached script in dlls/ shows the only dll test > which generates orphaned zombies is kernel. Actually shows the cumulative total. I took the liberty of hacking it a bit. See http://www.astro.gla.ac.uk/users/paul

Re: old addition: winetests

2003-11-11 Thread Ferenc Wagner
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > Looks good, but why did you change it from a cui to a gui? > I guess it's fine, we will want to go down that path > eventually... Er, I did not. I think it has been a gui ever since its birth... >> 1. How to integrate cross compilation into the M

suggestion: Get native uxtheme and native common controlls working on WINE and ReactOS

2003-11-11 Thread Jonathan Wilson
Is such a thing possible or not? i.e. getting uxtheme, the existing themes and the common controls dll (various versions of it) working on ROS or Wine fesable?

Re: Add preliminary support for keyboard layout APIs

2003-11-11 Thread Dmitry Timoshkov
[this time to the list in order to mark this as answered] "Shachar Shemesh" <[EMAIL PROTECTED]> wrote: > XFree 4.3 would do about this. setxkbmap il would only give Israeli > keyboard layout. In order to get the current behaviour, one would have > to do "setxkbmap us,il". Is that what you mean?

Top 30 on SF

2003-11-11 Thread Dimitrie O. Paun
Hi folks, I've just checked and we're in Top 30 downloads over the last 7 days at SourceForge. More exactly, we're 28th most downloaded project, with over 2 downloads. Not bad. We'll need over 3 d/l for Top 20, and over 5 for Top 10. We'll get there sooner or later. :) -- Dimi.

Re: old addition: winetests

2003-11-11 Thread Dimitrie O. Paun
On November 10, 2003 10:18 pm, Ferenc Wagner wrote: > I am making slow progress with this thing. It grew sort of > usable: can be cross compiled and run to produce sensible > output (tested on XP only). Present questions: Looks good, but why did you change it from a cui to a gui? I guess it's fi