Re: Strnage fff-by-one error

2004-04-18 Thread Dimitrie O. Paun
On April 18, 2004 6:12 pm, Mike Hearn wrote: > Can you build on Windows with our headers, and maybe substitute them one > at a time until you locate the header of ours which is wrong? Way too time consuming for me, I'm rather tied up ATM. If anyone wants to look into this problem, I can help get t

Re: Installing DCOM98 with latest CVS

2004-04-18 Thread Alexandre Julliard
Alexandre Julliard <[EMAIL PROTECTED]> writes: > [EMAIL PROTECTED] writes: > >> 0009:trace:ntdll:NtCreateFile handle=0x406cf7e8 access= >> name=L"\\??\\E:\\" objattr=0040 root=(nil) sec=(nil) io=0x406cf768 >> alloc_size=(nil) >> attr= sharing= disp=1 options=0021 ea

Re: Strnage fff-by-one error

2004-04-18 Thread Mike Hearn
On Sun, 18 Apr 2004 12:23:11 -0400, Dimitrie O. Paun wrote: > This is weird one. The Winelib build of AbiWord exposes an off-by-one > error. However, the Win32 build of AbiWord works perfectly (without > this very problem) under Wine/ReactOS/Windows. AbiWord builds flawlessly > under Winelib, not e

Re: Installing DCOM98 with latest CVS

2004-04-18 Thread Alexandre Julliard
[EMAIL PROTECTED] writes: > 0009:trace:ntdll:NtCreateFile handle=0x406cf7e8 access= > name=L"\\??\\E:\\" objattr=0040 root=(nil) sec=(nil) io=0x406cf768 > alloc_size=(nil) > attr= sharing= disp=1 options=0021 ea=(nil).0x > 0009:trace:heap:RtlAllocateHeap (0x

Re: dinput/joystick_linuxinput #2

2004-04-18 Thread Christoph Frick
On Sun, Apr 18, 2004 at 09:37:07PM +0200, Christoph Frick wrote: *sic* stupid brain... License: LGPL > - added code to have the joystick state be set to the assumed center > values of the joystick mapped to the range the application wants them > - generate events after setting the apropiate val

Re: GetModuleFileName

2004-04-18 Thread Alexandre Julliard
Juan Lang <[EMAIL PROTECTED]> writes: > What is the right thing? strlcpy? Usually lstrcpynA/W. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Installing DCOM98 with latest CVS

2004-04-18 Thread pvriens
Went back to the new implementation of GetDiskFreeSpace*. This gives me the following tracing after starting 'wine dcom98.exe' with full tracing on: 0009:Call kernel32.GetDiskFreeSpaceA(,406cfc40,406cfc38,406cfc3c,406cfc28) ret=01004f8a 0009:trace:volume:GetDiskFreeSpaceA (null),0x406cfc40

Re: List other downloads on winehq

2004-04-18 Thread Jakob Eriksson
Ivan Leo Murray-Smith wrote: Internet Explorer . Installing IE requires a windows license for the computer where you're installing it. This sort of restricts it's use with wine. In some jurisdictions... /Jakob

Re: GetModuleFileName

2004-04-18 Thread Juan Lang
Alexandre wrote: > I doubt it fills the buffer with nulls if it is too > large though, so strncpy is probably not the right > thing to use here (in fact strncpy is almost always > the wrong function to use, we should probably have > a janitorial task to fix this everywhere). What is the right thin

Re: Add a win32 hello world program

2004-04-18 Thread Mike Hearn
On Sun, 2004-04-18 at 12:22 -0700, Alexandre Julliard wrote: > I think we have already enough small winelib apps that can be used as > starting points, like winver or winepath. I added this one because it's graphical but as simple as possible. Wine either has fully fledged demos like winemine or

Re: GetModuleFileName

2004-04-18 Thread Alexandre Julliard
Eric Pouech <[EMAIL PROTECTED]> writes: > Interestingly enough, GetModuleFileName[AW] doesn't '\0'-terminate the > buffer if it is too small > Our current implementation was terminating the buffer. > This patch fixes this, and adds a test case for that behavior and > patches all the places in wine

Re: Add a win32 hello world program

2004-04-18 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > Mike Hearn <[EMAIL PROTECTED]> > Add a win32 hello world program which sets up a simple window and runs > the message loop. This can be used as a starting point for test programs. I think we have already enough small winelib apps that can be used as start

Re: dlls/kernel/console.c::SetConsoleCtrlHandler() cleanup/fixup

2004-04-18 Thread Paul Millar
On Sun, 18 Apr 2004, Jakob Eriksson wrote: > Thank you, thank you, thank you! :-) Happy to help :) Paul Millar

Re: msvcrt

2004-04-18 Thread Eric Pouech
Duane Clark a écrit : Uwe Bonnes wrote: "Eric" == Eric Pouech <[EMAIL PROTECTED]> writes: Eric> I was about to implement the fd inheritance in msvcrt, when I came Erich, the attachment seems broken again... Yep. With gmane, it is completely stripped off, but it shows up in the winehq ar

Re: msvcrt

2004-04-18 Thread Duane Clark
Uwe Bonnes wrote: "Eric" == Eric Pouech <[EMAIL PROTECTED]> writes: Eric> I was about to implement the fd inheritance in msvcrt, when I came Erich, the attachment seems broken again... Yep. With gmane, it is completely stripped off, but it shows up in the winehq archives just fine... rather

Re: msvcrt

2004-04-18 Thread Uwe Bonnes
> "Eric" == Eric Pouech <[EMAIL PROTECTED]> writes: Eric> I was about to implement the fd inheritance in msvcrt, when I came Erich, the attachment seems broken again... -- Uwe Bonnes[EMAIL PROTECTED] Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt -

Installing DCOM98 with latest CVS

2004-04-18 Thread pvriens
Hi, I was trying to install dcom98.exe with the latest CVS and run into several errors ranging from file-not-found errors upto problems with getting the free diskspace of drives. Tracing showed (amongst others): trace:file:GetLongPathNameW L"E:\\TOOLS",0x406cf144,1024 trace:file:RtlDosPathNameToN

Re: dlls/kernel/console.c::SetConsoleCtrlHandler() cleanup/fixup

2004-04-18 Thread Jakob Eriksson
Paul Millar wrote: Each build is identified by its time/date stamp (e.g. winetest-20040418-1000.zip). There's a fair number of different files available: winetest-.zip- zip compressed version of winetest.exe winetest-.zip.cookie - the md5sum of winetest.exe (sort of) win

arch tip #2

2004-04-18 Thread Mike Hearn
Hi everyone, I just checked in a new update to the genpatch script. It can now send an email to wine-patches automatically given a set of local changesets. Use it like this: ./genpatch -m 5 6 7 if you did three commits, patch-5, patch-6 and patch-7 and want to send them all to wine-patches as o

Re: dlls/kernel/console.c::SetConsoleCtrlHandler() cleanup/fixup

2004-04-18 Thread Paul Millar
On Sat, 17 Apr 2004, Kevin Koltzau wrote: > I can yes, just need to work out the details Ah, but the devil's in the detail. I might just be me, but it seems to be an inordinately fiddly process, but one I think I've finally got figured out. Its now part of the new version of WRT, which I'll just

Re: dlls/kernel/console.c::SetConsoleCtrlHandler() cleanup/fixup

2004-04-18 Thread Paul Millar
with output going in http://www.astro.gla.ac.uk/users/paulm/WRT/CrossBuilt Each build is identified by its time/date stamp (e.g. winetest-20040418-1000.zip). There's a fair number of different files available: winetest-.zip- zip compressed version of winetest.exe wine

Re: Widl: Conditionals, Dotted Versions, Handles

2004-04-18 Thread Ove Kaaven
lør, 17.04.2004 kl. 18.53 skrev Robert Shearman: > Hi, > > This patch adds support for several features I found lacking whilst > attempting to generate headers for RPC interfaces. Is this needed? @@ -350,6 +354,7 @@ | tSWITCHTYPE '(' type ')' { $$ = make_attrp(ATTR_SWITCHTYP

Re: Security of WINE and ReactOS: was Documents and settings

2004-04-18 Thread Robert van Herk
No programs that write to 'C:\' or 'C:\Windows' would be installed by me on my own machine or on the company networks I have worked on. No programmer on Unix or Windows (in this day and age) should assume that it can write anywhere but the user's home directory. From a security model perspective U

RE: Security of WINE and ReactOS: was Documents and settings

2004-04-18 Thread Robert Shearman
P. Christeas wrote: > > Just my humble opinion on this: > 1. One reason Unix security model is still around is that it is > simple. ACLs > and such need more administration and are more likely to be > configured wrong. That is absolutely true. Plus it is much easier to see who has what permissions

Re: List other downloads on winehq

2004-04-18 Thread Ivan Leo Murray-Smith
> Internet Explorer . Installing IE requires a windows license for the computer where you're installing it. This sort of restricts it's use with wine. Ivan.

Re: List other downloads on winehq

2004-04-18 Thread Mike Hearn
On Sat, 17 Apr 2004 23:39:56 -0400, Vincent wrote: > Also, besides DCOM95, there are a couple other Microsoft packages that > people are sometimes encouraged to install to get some functionality > that Wine hasn't matched yet. Does somebody have a list of what can be > found (and installed on a non

Re: List other downloads on winehq

2004-04-18 Thread Ivan Leo Murray-Smith
> Does somebody have a list of what can be > found (and installed on a non-Windows platform) on Microsoft's site? It's not a complete list, but I've got the following links vb runtime http://www.microsoft.com/downloads/details.aspx?FamilyID=bf9a24f9-b5c5-48f4-8edd-cdf2d29a79d5&DisplayLang=en the wi

Re: (no subject)

2004-04-18 Thread Ivan Leo Murray-Smith
> If not, I would like to give it a try, but I need some > documentation c.q. information on the functionallity > of these functions /what they do etc http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/wsalookupservicebegin_2.asp Ivan.

Re: Security of WINE and ReactOS: was Documents and settings

2004-04-18 Thread P. Christeas
Just my humble opinion on this: 1. One reason Unix security model is still around is that it is simple. ACLs and such need more administration and are more likely to be configured wrong. Unix, on the other hand, is compulsory (you *have* to set the permissions everywhere) and simple. In modern k

Change to CompareStringW introduced regression in QuArK (bug #2159)

2004-04-18 Thread David Costanzo
I have been investigating a regression in the functionality of QuArK, a popular level editor for Quake. The regression is filed as bug #2159. I have identified the cause of the regression as changes made to CompareStringW from revision 1.25 to revision 1.26 of wine/dlls/kernel/locale.c. I do not

Re: [D3D8] Fix on Hardware Vertex Shaders and D3DTADDRESS_MIRROR

2004-04-18 Thread Lionel Ulmer
> - fix the SetTextureStageState for D3DTADDRESS_MIRROR using dynamic GL > detection (and not build time GL headers) By the way, you should also check for the 'GL_IBM_texture_mirrored_repeat' extension. I know of no OpenGL drivers who has the IBM and not the ARB extension, but well, it does co