Re: Old Autocad trials?

2007-05-06 Thread Dan Kegel
On 5/5/07, L. Rahyen [EMAIL PROTECTED] wrote: [The worst problem with supporting Autocad is going to be the copy protection.] Yeah, probably. It looks like they used C-Dilla (aka safecast) from 2000 or so to 2005 or so. http://wiki.winehq.org/SafeDisc gives hope that Wine will support

Re: shell32: check cbSize in Shell_NotifyIconW to make apps sending garbage work (fixes bug #7940)

2007-05-06 Thread Dmitry Timoshkov
Mikolaj Zalewski [EMAIL PROTECTED] wrote: +/* The validation is also done in explorer. However we must also do it + * on the client size so that WM_COPYDATA doesn't crash the application + */ +if (nid-cbSize != NOTIFYICONDATAW_V1_SIZE +nid-cbSize !=

Re: Initial Mixer support on Mac OS X (1/7)

2007-05-06 Thread Dmitry Timoshkov
Emmanuel Maillard [EMAIL PROTECTED] wrote: Changelog : - inital Mixer support on Mac OS X - find all lines and initialize controls Could you please while you are working on winecoreaudio.drv make all public entry points (CoreAudio_widMessage, CoreAudio_wodMessage, CoreAudio_midMessage,

Re: dbghelp performance

2007-05-06 Thread Markus Amsler
Eric Pouech wrote: Markus Amsler a écrit : Eric Pouech wrote: Markus Amsler a écrit : I've played around with dbghelp performance. My test case was breaking at an unknown symbol (break gaga) while WoW was loaded in the debugger (wine winedbg WoW.exe). The time was hand stopped, memory usage

Re: dbghelp performance

2007-05-06 Thread Eric Pouech
Markus Amsler a écrit : Eric Pouech wrote: Markus Amsler a écrit : Eric Pouech wrote: Markus Amsler a écrit : I've played around with dbghelp performance. My test case was breaking at an unknown symbol (break gaga) while WoW was loaded in the debugger (wine winedbg WoW.exe). The time was

InternetCanonicalizeURLA / W - Missing some flags?

2007-05-06 Thread Chris Howe
I noticed a FIXME cropping up in the logs when working on EQ2, related to InternetCanonicalizeURL not fully parsing the flags that it is called with. Looking a bit closer, it offloads the grunt work to UrlCanonicalize anyway, and the missing flags seem to have analogs defined for UrlCanonicalize

Re: [PATCH 3/3] winex11: Use TINN algorithm to speed up colour lookups. (try 2)

2007-05-06 Thread Dmitry Timoshkov
Vitaly Budovski [EMAIL PROTECTED] wrote: Make use of the Triangle Inequality Nearest Neighbour algorithm to find the nearest colour more efficiently than a simple linear search. The improvements are most noticeable with a palette of 256 colours. Testing shows approximately 3-4x performance

Re: winmm: Use a pipe for timer

2007-05-06 Thread Amy Fox
i dnt understand wot ur on abwt m8 im only 15 and plus im blonde so i hav no idea? From: Steven Edwards [EMAIL PROTECTED] Reply-To: wine-devel@winehq.org To: wine-devel@winehq.org CC: [EMAIL PROTECTED] Subject: Re: winmm: Use a pipe for timer Date: Sat, 5 May 2007 16:59:26 -0400 Hi, On

RE: Initial Mixer support on Mac OS X (2/7)

2007-05-06 Thread Amy Fox
oi From: Emmanuel Maillard [EMAIL PROTECTED] Reply-To: wine-devel@winehq.org To: [EMAIL PROTECTED] Subject: Initial Mixer support on Mac OS X (2/7) Date: Sun, 6 May 2007 11:53:48 +0200 Changelog : - implement MIX_Open and MIX_GetNumDevs 0002-implement-MIX_Open-and-MIX_GetNumDevs.patch

Re: rsaenh: fix bugs in RSAENH_CPAcquireContext and RSAENH_CPGetProvParam

2007-05-06 Thread Mounir IDRASSI
Hi, Thanks Maarte for your comment. Please find attached the patch augmented with some tests that illustrate what has been corrected. Mounir IDRASSI IDRIX - Cryptography and IT Security Experts http://www.idrix.fr Maarten Lankhorst wrote: I don't see any tests added in this patch so it is hard

Re: Console output with different codepages - the result.

2007-05-06 Thread Kirill K. Smirnov
just a dummy question... does the different fonts your tests refer to have all the glyphs required ? (or said differently, isn't this a font issue about the required glyphs for russian ?) A+ By default (in 866 OEM codepage) wine console renderer behaves just like windows does, the difference

Re: change generic.ppd file

2007-05-06 Thread Detlef Riekenberg
On Fr, 2007-05-04 at 17:15 -0300, Alisson Gomes wrote: I do can recompile wine with change generic.ppd file? Not needed. only change the generic.ppd? generic.ppd is used as is, but only, when CUPS did not provide a ppd for your Printer and there was no ppd-override in the Registry.

Re: shell32: check cbSize in Shell_NotifyIconW to make apps sending garbage work (fixes bug #7940)

2007-05-06 Thread Mikołaj Zalewski
Dmitry Timoshkov wrote: Mikolaj Zalewski [EMAIL PROTECTED] wrote: +/* The validation is also done in explorer. However we must also do it + * on the client size so that WM_COPYDATA doesn't crash the application + */ +if (nid-cbSize != NOTIFYICONDATAW_V1_SIZE +

Re: Old Autocad trials?

2007-05-06 Thread Dalai Felinto
Hi! Here in my University, we have original copies of educational version of AutoCAD (I don't remember the versions). I don't know the licence restrictions, but I can try autorization to share exclusively to wine developers some AutoCAD license (then I can send you a copy). I'm talking from

Re: Fix keyboard focus issues

2007-05-06 Thread Dmitry Timoshkov
Bernhard Rosenkraenzer [EMAIL PROTECTED] wrote: The attached patch fixes bug #1798 (also known as 6986, 4042, 2819, 2149, and 2926) -- some fullscreen applications not getting focus correctly. As I already pointed out in the bug using window/screen width in comparisons should allow to avoid

Re: msi [3/4]: Set the text limit of the edit control if the limit isgiven

2007-05-06 Thread Dmitry Timoshkov
James Hawkins [EMAIL PROTECTED] wrote: +text = MSI_RecordGetString( rec, 10 ); +if ( text ) +{ +begin = strchrW( text, '{' ); +end = strchrW( text, '}' ); Perhaps it would be cleaner to use end = strchrW( begin, '}' ); -- Dmitry.

Re: [PATCH 3/3] winex11: Use TINN algorithm to speed up colour lookups. (try 2)

2007-05-06 Thread Dmitry Timoshkov
Vitaly Budovski [EMAIL PROTECTED] wrote: Now that you got rid of sqrt calls usage of float numbers internally doesn't look justified (to me) anymore. Only because in this instance it is used with integer data. It doesn't need to be limited to just integer values. Besides, what would be

Re: [PATCH 3/3] winex11: Use TINN algorithm to speed up colour lookups. (try 2)

2007-05-06 Thread Vitaly Budovski
Dmitry Timoshkov wrote: Vitaly Budovski [EMAIL PROTECTED] wrote: Now that you got rid of sqrt calls usage of float numbers internally doesn't look justified (to me) anymore. Only because in this instance it is used with integer data. It doesn't need to be limited to just integer values.

Re: [New]: Added wrapper dll for ct-api (CardTerminal API)

2007-05-06 Thread Steven Edwards
On 5/6/07, Christian Eggers [EMAIL PROTECTED] wrote: Hello, this wrapper dll permits access to chipcard readers which provides a ct-api (CardTerminal It looks really good. A couple of quick comments for future patches. Please use a standard LGPL license header in your patch for the header,

Re: [New]: Added wrapper dll for ct-api (CardTerminal API)

2007-05-06 Thread Steven Edwards
I forgot to mention the inclusion of config.h and port.h should come before other headers in your source. Thanks Steven On 5/6/07, Christian Eggers [EMAIL PROTECTED] wrote: Hello, this wrapper dll permits access to chipcard readers which provides a ct-api (CardTerminal API). -- Steven

volume names of mounted iso images

2007-05-06 Thread James Hawkins
Hi all, I have a patch ready to go that fixes a problem with the media switching code in msi. According to tests and msdn, the presence of a required media (usually a CD or DVD) is confirmed using only the volume name listed in the Media table of the msi file. The patch simplifies the existing