Re: [PATCH 6/6] ole32: Implement MkParseDisplayName.

2007-03-27 Thread Robert Shearman
Juan Lang wrote: +/* find a character from a set in reverse without the string having to be null-terminated */ +static inline WCHAR *memrpbrkW(const WCHAR *ptr, size_t n, const WCHAR *accept) +{ +const WCHAR *end, *ret = NULL; +for (end = ptr + n; ptr < end; ptr++) if (strchrW(accept, *pt

Re: Regression?

2007-03-27 Thread Robert Shearman
Bill Medland wrote: I just tripped over this; I think it crept in over the past couple of weeks. Anyone know what's going on? I'm not going to waste days searching for it if it is obvious to someone. wine: Call from 0x126ce72 to unimplemented function nspr4.dll.PR_GetPhysicalMemorySize, aborti

Re: Improvement of WSAIoctl

2007-03-27 Thread Stefan Dösinger
Am Mittwoch 28 März 2007 01:48 schrieb Dan Kegel: > But you can't do this: > > + * Copyright (C) the Wine project > > as there's no legal entity called "the Wine project". You have > to use your company's name, I think. (And be sure they've > granted permission.) Or if you have the rights to wh

re: Improvement of WSAIoctl

2007-03-27 Thread Dan Kegel
Hi Axel, some days ago, I tried to run the retail management software, we are developing in our company now for over 15 years, with Wine on Linux. Unfortunatly it didn't work. The reason was not our product itself, but the ODBC driver form MS for MS-SQL-Server. It uses a command for WSAIoctl i

Re: Regression?

2007-03-27 Thread Bill Medland
On Tue, 2007-27-03 at 23:32 +0200, Stefan Dösinger wrote: > Am Dienstag 27 März 2007 23:18 schrieb Bill Medland: > > I just tripped over this; I think it crept in over the past couple of > > weeks. Anyone know what's going on? I'm not going to waste days > > searching for it if it is obvious to s

Re: Regression?

2007-03-27 Thread Stefan Dösinger
Am Dienstag 27 März 2007 23:18 schrieb Bill Medland: > I just tripped over this; I think it crept in over the past couple of > weeks. Anyone know what's going on? I'm not going to waste days > searching for it if it is obvious to someone. > > wine: Call from 0x126ce72 to unimplemented function >

Re: AppDB latest entry not shown in test-data table

2007-03-27 Thread Alexander Nicolaysen Sørnes
Tirsdag 27 mars 2007 15:34, skrev Ben Hodgetts (Enverex): > I just noticed an issue with the AppDB while I was browsing. The data > from the latest submission is shown by default, but it doesn't appear in > the table of testing data (the block below which says what OS, version, > ratings, etc). So

Regression?

2007-03-27 Thread Bill Medland
I just tripped over this; I think it crept in over the past couple of weeks. Anyone know what's going on? I'm not going to waste days searching for it if it is obvious to someone. wine: Call from 0x126ce72 to unimplemented function nspr4.dll.PR_GetPhysicalMemorySize, aborting wine: Unimplemented

Re: [PATCH 4/6] ole32: Display the testname for the test for display name in test_moniker.

2007-03-27 Thread Robert Shearman
Juan Lang wrote: Hi Rob, +ok(!lstrcmpW(display_name, expected_display_name), "%s: display name wasn't what was expected\n", testname); Can you pass a WCHAR * when the string format is %s? display_name is WCHAR *, but testname is char *. -- Rob Shearman

Re: Localization resources

2007-03-27 Thread Alexander Nicolaysen Sørnes
Tirsdag 27 mars 2007 22:41, skrev Ann & Jason Edmeades: > Hiya, > > If adding files for translation to a new directory (xcopy), can anyone > confirm of deny whether the following is all I need to do: > > 1. Add rsrc.rc containing (* - see below) > #include > #include "resources.h" >

Localization resources

2007-03-27 Thread Ann & Jason Edmeades
Hiya, If adding files for translation to a new directory (xcopy), can anyone confirm of deny whether the following is all I need to do: 1. Add rsrc.rc containing (* - see below) #include #include "resources.h" LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #include "En.rc

Re: [PATCH 4/6] ole32: Display the testname for the test for display name in test_moniker.

2007-03-27 Thread Juan Lang
Hi Rob, +ok(!lstrcmpW(display_name, expected_display_name), "%s: display name wasn't what was expected\n", testname); Can you pass a WCHAR * when the string format is %s? --Juan The fish are biting. Get

Re: [PATCH 6/6] ole32: Implement MkParseDisplayName.

2007-03-27 Thread Juan Lang
Hi Rob, +/* find a character from a set in reverse without the string having to be null-terminated */ +static inline WCHAR *memrpbrkW(const WCHAR *ptr, size_t n, const WCHAR *accept) +{ +const WCHAR *end, *ret = NULL; +for (end = ptr + n; ptr < end; ptr++) if (strchrW(accept, *ptr)) ret =

Re: Summer of code

2007-03-27 Thread Eric Pouech
Dan Kegel a écrit : On 3/27/07, Stefan Dösinger <[EMAIL PROTECTED]> wrote: Hi Dan! I was curious how the SoC thing proceedes from now. The application deadline is now over, but who got the applications? Did you get them, or are they reviewed internally by Google? Who will be in charge for acce

Re: Summer of code

2007-03-27 Thread Dan Kegel
On 3/27/07, Stefan Dösinger <[EMAIL PROTECTED]> wrote: Hi Dan! I was curious how the SoC thing proceedes from now. The application deadline is now over, but who got the applications? Did you get them, or are they reviewed internally by Google? Who will be in charge for accepting them? Google re

AppDB latest entry not shown in test-data table

2007-03-27 Thread Ben Hodgetts (Enverex)
I just noticed an issue with the AppDB while I was browsing. The data from the latest submission is shown by default, but it doesn't appear in the table of testing data (the block below which says what OS, version, ratings, etc). So it means you're unable to edit the latest submitted test data for

Re: setupapi [5/7]: The Inf file should be copied regardless of the destination buffer

2007-03-27 Thread Alexandre Julliard
"James Hawkins" <[EMAIL PROTECTED]> writes: > Changelog: > * The Inf file should be copied regardless of the destination buffer. It doesn't seem right to copy the file and then return an error when the buffer is too small. -- Alexandre Julliard [EMAIL PROTECTED]

Re: setupapi [4/7]: Don't allow relative paths in SetupCopyOEMInf

2007-03-27 Thread Alexandre Julliard
"James Hawkins" <[EMAIL PROTECTED]> writes: > @@ -5,7 +5,7 @@ SRCDIR= @srcdir@ > VPATH = @srcdir@ > MODULE= setupapi.dll > IMPORTLIB = libsetupapi.$(IMPLIBEXT) > -IMPORTS = user32 version advapi32 rpcrt4 kernel32 ntdll > +IMPORTS = user32 version advapi32 rpcrt4 kernel32 ntdll s

Re: urlmon: Create one notif window per thread.

2007-03-27 Thread Alexandre Julliard
Jacek Caban <[EMAIL PROTECTED]> writes: > I forgot to remove DestroyWindow form Release, sorry. This patch also > takes care of unloading DLL. It's really worth doing as it prevents > creating a lot of useless windows. It still won't work, because you cannot destroy a window belonging to another