Re: wine on FreeBSD

2005-07-29 Thread Robert Lunnon
On Saturday 30 July 2005 04:18, jean-marc DETREZ wrote: > Hi, > > > > With the differents mails i receive from users or wine's developers, i > think that: > > > > - Dislike OpenBSD or SRV4, mincore did'nt fail if the page is > not mapped no [ENOMEM] error condition. > > > > -

Re: Add KERNEL32.SetThreadUILanguage() stub

2005-07-29 Thread Dmitry Timoshkov
"Andreas Mohr" <[EMAIL PROTECTED]> wrote: +LANGID WINAPI SetThreadUILanguage(WORD wReserved) +{ + FIXME("SetThreadUILanguage(0x%04x), semi-stub! (defaulting to english)\n", wReserved); + return MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT); +} Why are you returning english here? Wine should disp

[AppDB] Regression: Editing notes doesn't work anymore

2005-07-29 Thread Jonathan Ernst
Didn't had time to investigate yet. -- Jonathan Ernst <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part

TR: wine on FreeBSD with patch

2005-07-29 Thread jean-marc DETREZ
    De : jean-marc DETREZ [mailto:[EMAIL PROTECTED] Envoyé : vendredi 29 juillet 2005 20:28 À : 'Alexandre Julliard' Cc : '[EMAIL PROTECTED]'; 'wine-devel@winehq.com'; '[EMAIL PROTECTED]'; 'Dmitry Timoshkov'; 'Gerald Pfeifer' Objet : TR: wine on FreeBSD with patch      

wine on FreeBSD

2005-07-29 Thread jean-marc DETREZ
Hi,    With the differents mails i receive from users or wine’s developers, i think that:       - Dislike OpenBSD or SRV4,  mincore did’nt fail if the page is not mapped no [ENOMEM] error condition.   -  the FreeBSD man pages say that mmap would fail with [ENOMEM] err

Re: Add KERNEL32.SetThreadUILanguage() stub

2005-07-29 Thread Andreas Mohr
Hi, On Fri, Jul 29, 2005 at 07:14:22PM +0200, Thomas Weidenmueller wrote: > Andreas Mohr wrote: > > Hello all, > > > > this one is needed by XP's ping.exe and a reworked ReactOS version. > > > > Andreas Mohr > > This prototype is outdated. MS has documented this function in the > meanwhile: Tha

[Fwd: Re: [Fwd: Re: [Wine]wine-20050725 feedback : lots of graphical glitches]]

2005-07-29 Thread Vincent Rubiolo
Sending to the devel-list as suggested by people on wine-users. Just wasn't sure whther those kind of reports would be welcome on the devel ML. The issues mentioned below seem to be regressions. Thanks for your attention, I am willing to help but am just beginning to grasp everything wine-rela

Re: [wined3d] tidy up draw prim and add strided data new to d3d9

2005-07-29 Thread Felix Nawothnig
Oliver Stieber wrote: use ++x instead of x++ since x++ potentially requires a temporary variable. I seriously doubt this will actually have an effect on the resulting assembly code generated by any semi-serious compiler (regardless of the -O level) as for(i = 0; i < x; i++) is a quite common

Re: Add KERNEL32.SetThreadUILanguage() stub

2005-07-29 Thread Thomas Weidenmueller
Andreas Mohr wrote: > Hello all, > > this one is needed by XP's ping.exe and a reworked ReactOS version. > > Andreas Mohr This prototype is outdated. MS has documented this function in the meanwhile: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/mui_set_thread_ui_lang.as

How to turn off Anti-aliasing

2005-07-29 Thread George Lober
I have just updated my install of Wine and I notice that the config file is now deprecated, it doesn't get used. I want to turn off Wine Anti-aliasing. I was able to do it in the config file, but now I don't know. 'winecfg' doesn't have any such setting. Can it be turned off in the registry ?

Re: Impressive! Installshield actually almost worked!

2005-07-29 Thread Robert Shearman
Hans Kristian Rosbach wrote: Unhandled exception: page fault on read access to 0x in 32-bit code (0x). In 32 bit mode. Register dump: CS:0073 SS:007b DS:007b ES:007b FS:11ff GS:0033 EIP: ESP:5a9ec654 EBP:5a9edb24 EFLAGS:00210202( - 00 - -RI1) EAX:7c47a010 EBX:0

Re: WLDAP32: implement ldap_err2string

2005-07-29 Thread Hans Leidekker
On Friday 29 July 2005 15:55, Dmitry Timoshkov wrote: > > How would you handle this using LoadString? > > Something like this: > > PCHAR ldap_err2stringA( ULONG err ) > { > static char buf[256]; > > if (!LoadStringA(wldap_hinst, err, buf, 256)) > LoadStringA(wldap_hinst, IDS_DEF

Impressive! Installshield actually almost worked!

2005-07-29 Thread Hans Kristian Rosbach
For the very first time I the AltiAgent 5.0 installer actually managed to show a spash screen and even a progress bar that shows the loading of Installshield. I think the progressbar got to 100%, but then wine crashed. Good work, I'm seriously impressed and will be testing a few other installers t

Re: WLDAP32: implement ldap_err2string

2005-07-29 Thread Dmitry Timoshkov
"Hans Leidekker" <[EMAIL PROTECTED]> wrote: But according MSDN: The return value is a static pointer to the character string. Do not free this string. How would you handle this using LoadString? Something like this: PCHAR ldap_err2stringA( ULONG err ) { static char buf[256]; if (!

Re: WLDAP32: implement ldap_err2string

2005-07-29 Thread Frank Richter
On 29.07.2005 15:23, Hans Leidekker wrote: > On Friday 29 July 2005 14:45, Dmitry Timoshkov wrote: > >> I'd suggest to move all strings into a stringtable and load them >> by LoadStringA/W. That way you get internationalization for free. > > But according MSDN: > >> The return value is a static

Re: Theming & code duplication

2005-07-29 Thread Frank Richter
On 28.07.2005 15:54, Robert Shearman wrote: > In that case, you will have to retrieve the rectangle of the changed > area and pass that rectangle to RedrawWindow. Though, that would mean that paint messages are emitted to the window? IIRC last time I checked (with Spy++), there were no paint messa

Re: WLDAP32: implement ldap_err2string

2005-07-29 Thread Hans Leidekker
On Friday 29 July 2005 14:45, Dmitry Timoshkov wrote: > I'd suggest to move all strings into a stringtable and load them > by LoadStringA/W. That way you get internationalization for free. But according MSDN: > The return value is a static pointer to the character string. > Do not free this stri

Re: WLDAP32: implement ldap_err2string

2005-07-29 Thread Dmitry Timoshkov
"Hans Leidekker" <[EMAIL PROTECTED]> wrote: +static const char *errorstring[] = { +"Success", ... +static const WCHAR error00[] = { 'S','u','c','c','e','s','s',0 }; I'd suggest to move all strings into a stringtable and load them by LoadStringA/W. That way you get internationalization

Re: Benchmark's on the Wiki

2005-07-29 Thread Christoph Frick
On Thu, Jul 28, 2005 at 05:34:08PM +0200, Holger Dell wrote: > >or is there a way to not only test "functionality" with tests but > >also "speed"? i guess this would be nice to find bottlenecks. > has anyone ever tried to use grpof or any other profiling tool to > analyze, which code eats most cpu