Re: valgrind and wine

2002-11-30 Thread Lionel Ulmer
==6476== Valgrind detected that your program requires ==6476== the following unimplemented functionality: ==6476==modify_ldt(): I (JRS) haven't investigated this yet; sorry. ==6476== This may be because the functionality is hard to implement, ==6476== or because no reasonable program

Re: Texture problems under Wine - more info

2002-11-30 Thread Lionel Ulmer
So, the question is What is the difference between the WineX OpenGL library and the Wine OpenGL library? Well, for me, the only possible difference would be that : ' This begs the question: Does the Linux implementation of pthread really work anyway? Works in WineX (though we needed some

Where to use dosdev

2002-11-30 Thread György 'Nog' Jeney
In some of the int21 routines it says that we should use DOSDEV_Peek/Read/Write. Should we also use the functions in the devices.c to implement all functions on devices like ioctls etc.? nog.

MIDI Mapper fix

2002-11-30 Thread Jeff Smith
I'm so happy, I just had to share it with everyone :-D Changelog: Fix for MIDI Mapper. Notes: Finally found it! This was the last thing keeping sound from working in Auralia. With just this simple patch, it now works. Auralia still has a few problems, but they are minor in comparison. It

Re: Yet another D3D patch....

2002-11-30 Thread Christian Costa
Lionel Ulmer wrote: Hi all, This patch should not be dependant of any others... But to prevent line number errors, better to commit it after the 5 - 9 series (yeah, the attachements are numbered to ease tracking :-) ). Changelog: - start of support for device locking / unlocking via

Re: Yet another D3D patch....

2002-11-30 Thread Lionel Ulmer
This patch breaks the TWIST demo that was working fine. I think the changes in d3ddevice_create are responsible of that. Strange, it works fine here.. A bit slow when statistics are displayed (due to the locking of the D3DEVICE surface and thus needing a slow GL call like glReadPixels /

Re: Janitorial Projects

2002-11-30 Thread Dimitrie O. Paun
On November 29, 2002 06:10 pm, Rolf Kalbermatter wrote: But what the heck do the errors about AW functions calling Unicode mean? Isn't that the actual idea about the AW functions? Good catch. I've updated the list, there were 52 AW functions, which leaves us 142 cross calls to deal with... :)

DPMI_CallRMProc trouble

2002-11-30 Thread György 'Nog' Jeney
I realy need help with this. Whenever I call a DOSDEV_ function then that function eventually calls DOSDEV_DoReq. This function calls DPMI_CallRMProc. Now that function call DOSMEM_GetBlock( 64, (UINT16 *)(context-SegSs) ) to try and allocate a stack. This fails for some reason but I dont

Re: Yet another D3D patch....

2002-11-30 Thread Christian Costa
Lionel Ulmer wrote: This patch breaks the TWIST demo that was working fine. I think the changes in d3ddevice_create are responsible of that. Strange, it works fine here.. A bit slow when statistics are displayed (due to the locking of the D3DEVICE surface and thus needing a slow GL call like

Re: Janitorial Projects

2002-11-30 Thread Dimitrie O. Paun
On November 29, 2002 03:06 pm, Francois Gouget wrote: Here's a proposed addition to the Janitorial projects: Added: http://www.dssd.ca/wine/Wine-Fun.html#tests Let me know if you want anything changed. -- Dimi.

Re: somebody help me identify this bug please

2002-11-30 Thread ezra daniel
that I have tried and needed yes, only valves with acute accent like you call it, excuse my english.. :) And I dont understand what you mean by dead key... but anyway... in every linux app I can type that right, only the new wine version breaks that, but I know it was fixed on 20021031 cause

Re: strcat+strcat+strcat == baaad

2002-11-30 Thread Alexandre Julliard
Francois Gouget [EMAIL PROTECTED] writes: I don't like pieces of code that go: strcpy(foo, bar1); strcat(foo, bar2); strcat(foo, bar3); strcat(foo, bar4); strcat(foo, bar5); strcat(foo, bar6); It's really inefficient: the cost increases quadratically with the size of the

Re: Janitorial Projects

2002-11-30 Thread Dustin Navea
Sorry if this hits the list twice im not sure if i typed wine-devel into the to line or not ;) That is a good question, either that or i will need borrow a copy of msvc from a friend.. -Dustin - Original Message - From: Tony Lambregts [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Wine

Reopened a bug

2002-11-30 Thread Dustin Navea
I have reopened bug #15 due to the fact that the bug still exists to a certain extent and in a different form. When sending an IM in AIM with any recent version of wine (including a couple of days before the latest cvs snapshot), I can resize the window and when the buttons go to reposition

Re: strcat+strcat+strcat == baaad

2002-11-30 Thread Joerg Mayer
On Sat, Nov 30, 2002 at 10:49:34AM -0800, Alexandre Julliard wrote: It's more efficient to do: sprintf(foo, %s%s%s%s%s%s, bar1,bar2,bar3,bar4,bar5,bar6); In case you cannot be 100% sure of the lengths, it might still be worth it with snprintf, but otherwise, it's a matter of taste.

Re: strcat+strcat+strcat == baaad

2002-11-30 Thread Jeremy White
It's really inefficient: the cost increases quadratically with the size of the resulting string. Well, no, the cost is linear. It would only be quadratic if the number of strcat calls depended on the length of the string. It's more efficient to do: sprintf(foo, %s%s%s%s%s%s,

Compilation with -DSTRICT

2002-11-30 Thread Thomas Wickline
Hello, I just want to say Thank you to all the people who put work into the Compilation with -DSTRICT Tom