Simple installer regression testing

2006-07-29 Thread Dan Kegel
It would be nice to have a simple way to verify that wine can still install apps properly. Ideally this test should run on either Windows or Wine unchanged, and should verify the checksum of all installed files. So I whipped up a demo of how to do this for winzip 10: http://kegel.com/wine/test-w

Re: usp10: Resend - Add funtionality for ScriptStringAnalyse

2006-07-29 Thread Vitaliy Margolen
Saturday, July 29, 2006, 8:34:31 PM, Jeff L wrote: > A resend with after a shortening of the variable names, fixing the > handelling of multiple scripts and a slight rework to remove tests > before HeapFree calls and > meanigful variables. You need to make few more changes: > -lstrcpyW(lf.l

Re: [AppDB] Avoid sending a bad bug link e-mail

2006-07-29 Thread Chris Morgan
This doesn't look right, we aren't setting any $sMsg or $sSubject in this case. Chris On Saturday 29 July 2006 8:09 pm, Alexander Nicolaysen Sørnes wrote: > If a user deletes a bug link he has submitted, don't send him an e-mail > telling him it has been rejected. > > > Regards, > > Alexander

Re: Indentifying Unicode scripts

2006-07-29 Thread Jeff Latimer
Vijay, I think the functions will be useful. Will keep an eye on them to see where thay can be applied. Jeff Vijay Kiran Kamuju wrote: Hi Jeff, I think the mbcs function in msvcrt can help? I have worked on that front b4 in wine. But now I'm forbidden to touch that part. Check this page htt

Re: Indentifying Unicode scripts

2006-07-29 Thread Vijay Kiran Kamuju
Hi Jeff, I think the mbcs function in msvcrt can help? I have worked on that front b4 in wine. But now I'm forbidden to touch that part. Check this page http://msdn2.microsoft.com/en-us/library/3hd1xf60.aspx I will try to find more info on it. Thanks, VJ On 7/29/06, Jeff Latimer <[EMAIL PROTECT

Re: Indentifying Unicode scripts

2006-07-29 Thread Jeff Latimer
Vijay, do you have some examples on these functions to get me started? Jeff Vijay Kiran Kamuju wrote: Hi, In windows the identification of the unicode strings is handled by msvcrt. I think we should put helper functions so that we can use them in msvcrt. Which will be inturn used in usp10

Re: Indentifying Unicode scripts

2006-07-29 Thread Vijay Kiran Kamuju
Hi, In windows the identification of the unicode strings is handled by msvcrt. I think we should put helper functions so that we can use them in msvcrt. Which will be inturn used in usp10 my 2cents Thanks, VJ On 7/29/06, Jeff L <[EMAIL PROTECTED]> wrote: As part of implementing uniscribe, I a

Re: Audio stuttering issue

2006-07-29 Thread Chris
On Saturday 29 July 2006 09:01, Mike Hearn wrote: > On Thu, 27 Jul 2006 15:05:12 -0700, Chris wrote: > > It does. You don't really have to change anything. > > I thought the user would have to change the limit in their startup scripts > or the like? I mean you don't need to change your patch at al

Re: Win64 patch 2/2 (winedbg)

2006-07-29 Thread Alexandre Julliard
Francois Gouget <[EMAIL PROTECTED]> writes: > 'grep -t "%ll" *' finds 149 instances, mostly traces who there are > some printfs in tools/winedump. > > Should this be turned into a janitorial project? > What is the recommended alternative? That would be a good idea. In traces we should use wine_db

Re: Win64 patch 2/2 (winedbg)

2006-07-29 Thread Francois Gouget
On Tue, 25 Jul 2006, Alexandre Julliard wrote: Ge van Geldorp <[EMAIL PROTECTED]> writes: case AddrModeFlat: -dbg_printf("0x%08lx", addr->Offset); +dbg_printf("0x%08llx", addr->Offset); %ll formats are not portable, please avoid them. 'grep -t "%ll" *' finds 149 instan

Re: usp10: Implement digit substitution functions and add stubs

2006-07-29 Thread Hans Leidekker
On Saturday 29 July 2006 12:33, Albert Lee wrote: > This adds implementations for ScriptRecordDigitSubstitution and > ScriptApplyDigitSubstitution that should be correct. Thanks for your patch Albert. I noticed that the changes to the spec file are missing. It would also be nice if you could inte

Re: Audio stuttering issue

2006-07-29 Thread Mike Hearn
On Thu, 27 Jul 2006 15:05:12 -0700, Chris wrote: > It does. You don't really have to change anything. I thought the user would have to change the limit in their startup scripts or the like? That isn't going to work, we need it to be fully automatic with no configuration changes needed. > RLIMIT_

Re: wine-ShowCursor-D3D-over-GDI.patch

2006-07-29 Thread H. Verbeet
On 29/07/06, Andrew Riedi <[EMAIL PROTECTED]> wrote: Well, here is my first patch, feel free to tell me what all is wrong with it. I noticed a problem in WoW d3d, so I tracked it down and checked out msdn. It seems that implementing ShowCursor() over GDI is acceptable, at least according to msd

Re: wine_main_preload_info not found, cannot use first megabyte, *.exe don't work

2006-07-29 Thread Mike McCormack
Pavel Roskin wrote: Something strange to happened my Wine installation recently. I'm getting following messages if I run any program from Wine: $ winemine wine_main_preload_info not found err:dosmem:setup_dos_mem Cannot use first megabyte for DOS address space, please report Looks like th

Indentifying Unicode scripts

2006-07-29 Thread Jeff L
As part of implementing uniscribe, I am looking at breaking down strings into their various unicode scripts (ie. numeric, arabic etc). The first step is to identify the scripts in the string. The simple approach is for me to code some ranges and check which script a character belongs to. I a