Re: [PATCH] widl: Limit recursion deepth within structs to 1 for checking for full-pointers.

2013-08-30 Thread Paul Chitescu
Hi! It would help to attach the patch, not your editor's swap file. Paul On Friday 30 August 2013 10:57:26 pm Kai Tietz wrote: > Hello, > > attached patch limits recursion in type_has_full_pointer-function to a > deeth of 1. By this all necessary checks should be possib

Re: Possible wine bug concerning the case of the DbgHelp.h header filename

2013-06-12 Thread Paul Chitescu
bug report on your bugtracker so this issue > doesn't get lost. A search there for did not > turn up anything relevant. > > Alan Hi! The Platform SDK creates DbgHelp.h however it shouldn't matter for Windows programs as they are case insensitive. The problem here is that MinGW somehow operates case sensitive so raise a bug for that. Paul

Re: IPC between linux processes and wine processes

2013-05-02 Thread Paul Chitescu
Winelib application so you can call the native API from it. The last method of running win32 code in a native process is a no go. All but the simplest libraries expect a fully prepared runtime and Windows environment which only a Wine instance can provide. Paul Chitescu

Re: [PATCH 1/3] ntoskrnl.exe: Add include/ddk/ntifs.h header with EPROCESS struct definition.

2012-10-05 Thread Paul Chitescu
On Friday 05 October 2012 10:00:00 am Christian Costa wrote: > --- > include/ddk/ntifs.h | 555 > +++ 1 file changed, 555 > insertions(+) > create mode 100644 include/ddk/ntifs.h > > diff --git a/include/ddk/ntifs.h b/include/ddk/ntifs.h > new file

Re: [PATCH 1/2] ntoskrnl.exe: Implement IoGetCurrentProcess and KeGetCurrentThread.

2012-10-04 Thread Paul Chitescu
On Thursday 04 October 2012 08:25:13 am Dmitry Timoshkov wrote: > Christian Costa wrote: > > PEPROCESS WINAPI IoGetCurrentProcess(void) > > { > > -FIXME("() stub\n"); > > -return NULL; > > +TRACE("()\n"); > > + > > +/* Return current process id since PEPROCESS is opaque and drive

Re: [PATCH 0/6] Extended file stat system call

2012-04-28 Thread Paul Eggert
On 04/26/2012 11:25 AM, Roland McGrath wrote: > What I'd really prefer is a name that is less meaninglessly arcane, Since people are used to the string "stat", and since this is about getting related attributes, how about using the string "statr"? Thus "statrat" could be the syscall that acts like

Re: [PATCH 0/6] Extended file stat system call

2012-04-20 Thread Paul Eggert
On 04/19/2012 09:32 AM, Roland McGrath wrote: > I have no comment on the functionality. But "xstat" is probably a poor > choice of name. In AIX 7.1 the (similar) function is called statxat instead of xstat. The API isn't exactly the same, but it's the same basic idea. Might be worth looking at,

Re: RFC: Duplicate in/out device naming

2012-03-28 Thread Paul Chitescu
e extra checks like: - If it's input and it doesn't already contain (case insensitive) "input" or "capture" or "microphone" append " Input" (as much as it fits in buffer) - If it's output and it doesn't already contain (case insensitive) "output" or "playback" or "speaker" append " Output" (as much as it fits in buffer) Paul

Re: [PATCH 2/2] comdlg32: Widen buffer to accomodate Catalan translation

2011-12-16 Thread Paul Chitescu
at least 32 bits boundaries so a 17 or 18 WCHAR buffer will use the same amount of memory. Paul

Re: mshtml: call FindMimeFromData with a NULL buffer in ResProtocol_Start

2011-11-02 Thread Paul Chitescu
On Wednesday 02 November 2011 07:19:02 am Austin English wrote: > Fixes http://bugs.winehq.org/show_bug.cgi?id=27115, a regression > introduced by 0825f4b3ff3718752b5f6addd95bc30c10f75d24. Instead of not passing actual read data please fix FindMimeFromData. Reverting the patch will break many pro

Re: signal_arc.c failing to cross-compile

2011-10-28 Thread Paul Chitescu
l not work properly with bionic even if they may compile. Paul On Friday 28 October 2011 07:46:26 am Roger Cruz wrote: > Hi Andre et al, > > Wondering if any of you know how to get around this? The compiler is > barfing at the lack of ucontext_t when doing a typedef of SIGCONTEXT.

Re: Anyone wants to ban spammer on forum

2011-10-19 Thread Paul Romanyszyn
have figured out the answer to the captcha. Any way to determine IP address and do something like failtoban and lock the IP our for a few hours. This should be a firewall function not forum software. Paul R.

Re: DLLCanUnloadNow Question

2011-10-07 Thread Paul Chitescu
s. I don't know, maybe on Windows mscoree is never unloaded - this can be verified easily. If there are actually programs that crash that way because they depend on the Windows behavior we can work around by making internally a LoadLibrary call when the first object is created and a FreeLibrary call after the last object is destroyed. Paul

Re: Vista/w2k8/w7 users, please test mmdevapi base render test

2011-10-04 Thread Paul Chitescu
On Tuesday 04 October 2011 02:40:49 pm joerg-cyril.hoe...@t-systems.com wrote: > [...] > - sound card without capture (does "capture only" exist?) > [...] Yes, there are at least some webcams with built-in USB microphone. Paul

Re: winelib an fpc

2011-08-30 Thread Paul Chitescu
proxy program and talk to it through a socket or some other form of IPC. Finally, if your application depends too much on some DLL (especially things you cannot easily proxy like graphics) just make it a Win32 EXE. Paul

Re: NtQuerySystemInformation and exposing unix_pid

2011-08-03 Thread Paul Vriens
On 08/03/2011 07:13 PM, Alexandre Julliard wrote: Paul Vriens writes: Hi, I would like to add some per-process information in NtQuerySystemInformation with respect to cpu-usage. The wine server doesn't currently expose the unix_pid so I can't use /proc//* information. Would i

NtQuerySystemInformation and exposing unix_pid

2011-08-01 Thread Paul Vriens
xt_process)? Or should all this information (and the /proc handling) go into the server? -- Cheers, Paul.

Re: NtQuerySystemInformation needs a little bit more flesh for SystemProcessorPerformanceInformation

2011-08-01 Thread Paul Vriens
ome of the tools. Having a number in the overall cpu usage is nice but it should be close to what it should be in this case. -- Cheers, Paul.

Re: [PATCH] shell32: Disable WOW64 redirection when converting pidls to UNIX paths. (try 2, resend)

2011-07-28 Thread Paul Vriens
On 07/29/2011 01:29 AM, Octavian Voicu wrote: +else +win_skip("Not on WOW64, skipping test.\n"); Why a win_skip()? Isn't a normal skip() more appropriate? -- Cheers, Paul.

NtQuerySystemInformation needs a little bit more flesh for SystemProcessorPerformanceInformation

2011-07-27 Thread Paul Vriens
0 / clk_tck; This Reserved1[0] is the DPC Time but I'm wondering what values from /proc/stat to use here (remainder[0] is I/O wait). We could always make up something of course but being accurate would be nicer. -- Cheers, Paul.

Re: richedit: Implement WB_DELIMITER and remove todo_wine's in tests.

2011-07-26 Thread Paul Vriens
can remove more lines as the 'if' now contains the same code as the 'else'. -- Cheers, Paul.

Re: [PATCH] wscript: implemented Host_get_BuildVersion

2011-07-05 Thread Paul Vriens
On 07/04/2011 11:28 PM, Michał Ziętek wrote: +ok(typeof(WScript.BuildVersion) === "number", "typeof(WScript.BuldVersion) = " + typeof(WScript.BuldVersion)); Patch is already committed but there is a typo here 'BuldVersion' instead of 'BuildVersion'. -- Cheers, Paul.

Re: [PATCH 04/13] winmm: Clean up waveform.c's style

2011-06-24 Thread Paul Vriens
On 06/23/2011 08:12 PM, Andrew Eikum wrote: +if(dwFlags& WAVE_FORMAT_QUERY) +TRACE("WAVE_FORMAT_QUERY requested!\n"); How is removing the spaces for all these if/else statements an improvement? It's also not consistent with the rest of the winmm code. -- Cheers, Paul.

Ge (Greg) van Geldorp

2011-06-10 Thread Paul Vriens
ed to mark Greg's life and contributions to Wine at Wineconf this year. Alexandre mentioned potentially hosting the winetestbot at codeweavers in the future. Both the frontpage remembrance and the potential hosting somewhere else has been discussed by me and Arno and will not be an issue. Che

Re: audio: remove extraneous parentheses around equality comparisons

2011-05-09 Thread Paul Chitescu
If you're at it can you move the variable at the right side of the comparison? if (((mr->msg_tosave + 1) % mr->ring_buffer_size) == mr->msg_toget)

Re: [PATCH 1/5] mmdevapi: Add InitializeDriver() method to drivers

2011-05-02 Thread Paul Chitescu
On Monday 02 May 2011 01:32:59 pm Alexandre Julliard wrote: > Andrew Eikum writes: > > @@ -72,11 +73,19 @@ static BOOL load_driver(const WCHAR *name) > > } > > > > #define LDFC(n) do { drvs.p##n = (void*)GetProcAddress(drvs.module, > > #n);\ -if(!drvs.p##n) return FALSE; } while(0);

Re: [Fwd: po files]

2011-04-28 Thread Paul Vriens
On 04/28/2011 11:21 AM, Łukasz Wojniłowicz wrote: Hi Łukasz, Frederic had the same "issues" if I'm correct. Please have a look at: http://www.winehq.org/pipermail/wine-patches/2011-April/101200.html and http://www.winehq.org/pipermail/wine-devel/2011-April/089796.html -- Cheers, Paul.

Re: Ubuntu's next release and raising hard ulimit on ubuntu

2011-03-25 Thread Paul Chitescu
On Friday 25 March 2011 03:26:25 pm Dan Kegel wrote: > Scott, correct me if I'm wrong, but does Natty still have the > hard limit of 1024 files open per process? > If so, should be ask people to go vote for > https://bugs.launchpad.net/ubuntu/+source/linux/+bug/663090 > ? > > Getting that limit rai

Re: kernel32/tests: remove win9x hacks

2011-02-23 Thread Paul Vriens
astError() == ERROR_CALL_NOT_IMPLEMENTED; - -if (is_win9x) -win_skip("Skipping some tests that cause GetFullPathNameA to crash on Win9x\n"); -- Cheers, Paul.

Re: RFC: Patch to change what sets the is_win9x in riched20/tests

2011-02-21 Thread Paul Vriens
that Austin sent some 9x cleanup patches. That said, I think the best way is to get rid of all the win9x 'hacks' in editor.c and rely on the fact that we have NT4+. -- Cheers, Paul.

Re: po: Update French translation

2011-02-08 Thread Paul Vriens
pose? I think that the fuzzy ones are ignored for translations: http://source.winehq.org/git/wine.git/?a=commitdiff;h=1898f22ca5d2d79750e9820cfe2b4204ea9432cc -- Cheers, Paul.

Re: wintrust/tests: make sure return values are used (LLVM/Clang) (resend)

2011-02-04 Thread Paul Vriens
t and then check it). I know that this code path will never be taken, but still. -- Cheers, Paul.

Re: [dlls/shdocvw] Initialize variable (Coverity)

2011-02-01 Thread Paul Vriens
On 02/01/2011 03:26 PM, Nikolay Sivov wrote: On 2/1/2011 17:14, Paul Vriens wrote: Hi, Addresses Coverity #1090. If CoCreateInstance() fails we check the uninitialized urlfile variable. Same story with urlobj. In fact it looks better to try CoCreateInstance first, before anything else like

Re: gdiplus: C++ fixes for headers

2011-02-01 Thread Paul Chitescu
On Tuesday 01 February 2011 09:49:46 am Iain Arnell wrote: > To fix inclusion of gdiplus.h under C++, this patch: > * adds missing class declaration for GpPen > * adds missing class declaration for CharacterRange > * fixes PenAlignment/GpPenAlignment declaration > * avoids redeclaration of PixelFor

Re: Testbot not accepting patch

2011-01-15 Thread Paul Vriens
attached patch doesn't contain a test. Could that be it? -- Cheers, Paul.

Re: gdiplus: Support for indexed formats in GdipBitmapSetPixel

2011-01-11 Thread Paul Vriens
PixelFormat1bppIndexed: +setpixel_8bppIndexed(r,g,b,a,row,x,bitmap); +break; Hi, Didn't check the other part of the patch for correctness but you are calling the same function here for 3 different formats. -- Cheers, Paul.

Re: "N" shows up as missing on the translations status website

2011-01-05 Thread Paul Vriens
ot;Y" 549 msgstr "Y" 550 551 #: cmd.rc:257 xcopy.rc:41 552 msgctxt "No key" 553 msgid "N" 554 msgstr "" So for some reason the "No key" is not picked up in the English po file. -- Cheers, Paul.

Re: spoolss/tests: Skip tests on Win7

2010-12-27 Thread Paul Vriens
On 12/27/2010 12:47 PM, Greg Geldorp wrote: From: Paul Vriens But that means we will skip on Wine as well (when/if implemented). Is that OK? We skip if UnloadDriver is NOT present. It is present on Wine, so the tests do run on Wine. Win7 is the only platform where the function is not present

Re: spoolss/tests: Skip tests on Win7

2010-12-27 Thread Paul Vriens
On 12/27/2010 12:35 PM, Greg Geldorp wrote: --- dlls/spoolss/tests/spoolss.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) But that means we will skip on Wine as well (when/if implemented). Is that OK? -- Cheers, Paul.

Re: Hebrew version of Wine History

2010-12-27 Thread Paul Vriens
ed in favor of the wiki one. So maybe introduce some Hebrew to the wiki and point to there instead? -- Cheers, Paul.

Re: Testbot: User not logged in Problem with WVISTAADM

2010-12-14 Thread Paul Vriens
nore that error message. Greg. Could these changes also explain the new ntdll:exception failures: http://test.winehq.org/data/tests/ntdll:exception.html -- Cheers, Paul.

Re: [PATCH 5/6] mshtml: Added IHTMLWindow2::open test.

2010-12-12 Thread Paul Vriens
would be the best approach to fix these? We can add a broken() for the 3577 todo_wine 3578 ok(new_window == NULL, "new_window != NULL\n"); but what about the 3582 todo_wine 3583 CHECK_CALLED(EvaluateNewWindow); introduce a CHECK_CALLED_BROKEN also in this file? -- Cheers, Paul.

Re: wine's configure says "gst/gstpad.h usability... No"

2010-12-11 Thread Paul Vriens
ttp://www.winehq.org/pipermail/wine-patches/2010-November/096133.html -- Cheers, Paul.

Re: winedbg --gdb shows multiple segfaults during any app startup

2010-12-10 Thread Paul Chitescu
On Friday 10 December 2010 08:57:15 pm Ilya Basin wrote: > In both 1.3.8 and git winedbg --gdb or plain gdb catches several > segfaults, but if I ignore them, the program works. > > $ CC="ccache gcc" ./configure CFLAGS="-g -O0" > make > ./wine winedbg.exe --gdb notepad > > Wine-gdb> cont > Continui

Re: winemenubuilder: Include icons in .url menus

2010-12-07 Thread Paul Vriens
On 12/07/2010 06:45 PM, Andrew Bogott wrote: This should supersede the previous version of this patch. This one plugs a memory leak present in the last version. Hi Andrew, The previous patch has already been committed. -- Cheers, Paul.

Re: [1/4] shdocvw: skip some tests if a modern IE is not present

2010-12-05 Thread Paul Vriens
IPropertyStorage_ReadMultiple() fails? -- Cheers, Paul.

How to deal with variables where the size differs for 32 and 64bit

2010-12-05 Thread Paul Vriens
a wrapper for the ok() messages, with a _WIN64 check somewhere? Or use a different printf format identifier? The same is also true for the TRACE() messages in our implementation. -- Cheers, Paul. diff --git a/include/oledb.idl b/include/oledb.idl index 4841165..6736fba 100644 --- a/include

Re: Use of the L prefix for wide strings in resource files

2010-12-05 Thread Paul Vriens
On 12/05/2010 04:14 PM, Alexandre Julliard wrote: Paul Vriens writes: Hi, Yaron just made me aware of something he and I discussed briefly a few weeks ago. The shlwapi resource files uses the following: PUSHBUTTON L"&OK", IDOK, 105, 40, 50, 14, WS_GROUP | WS_TABSTOP

Use of the L prefix for wide strings in resource files

2010-12-05 Thread Paul Vriens
amp;lang=022%3A01&resfile=dlls%2Fshlwapi&type=5&id=4608 ResHacker shows the same strangeness so it appears not only to be the translation site. Any idea where to start looking? -- Cheers, Paul.

Re: Death to win9x?

2010-11-30 Thread Paul Vriens
nk the first (only?) thing we should discuss right now is whether we should stop running our test-suite on Win9x/WinME. The little bits and pieces we have in our code should stay as we probably need that to cope with old apps that expect a different behavior. -- Cheers, Paul.

Re: mshtml: Added beginning ActiveX tests.

2010-11-30 Thread Paul Vriens
'patchwatcher' and the batch running of the (almost) daily winetests. Cleaning up the tests will come after that and will certainly be a nice long janitorial task. -- Cheers, Paul.

Re: mshtml: Added beginning ActiveX tests.

2010-11-30 Thread Paul Vriens
On 11/30/2010 03:42 PM, Jacek Caban wrote: Hi Paul, On 11/30/10 2:46 PM, Paul Vriens wrote: Changing the lstrcmpW and using A-functions to create the window makes the tests succeed on my win98 box (changed activex.c attached). Thanks for catching it. How about this version: http

Re: mshtml: Added beginning ActiveX tests.

2010-11-30 Thread Paul Vriens
On 11/30/2010 01:56 PM, Paul Vriens wrote: Hi Jacek, On 11/30/2010 01:38 PM, Jacek Caban wrote: +static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID) +{ + if(dispID == DISPID_READYSTATE){ + BSTR state; + HRESULT hres; + + static const WCHAR completeW

Re: mshtml: Added beginning ActiveX tests.

2010-11-30 Thread Paul Vriens
return CreateWindowW(wszHTMLDocumentTest, wszHTMLDocumentTest, +WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, +515, 530, NULL, NULL, NULL, NULL); +} This will not work on Win9x as well. My Win98 box runs IE6 so it will run these tests I guess (unlike the win98 testbot). -- Cheers, Paul.

Re: [PATCH 3/5] mshtml: Added SetUIHandler tests.

2010-11-29 Thread Paul Vriens
matter of adding 324 and 325 to the switch in PropertyNotifySink_OnChanged()? -- Cheers, Paul.

Re: atl/tests: Fix test in test_registrar.

2010-11-27 Thread Paul Vriens
s not preserved (it's 0x%02X%02X%02X%02X)\n", 0xff& bytes[0], 0xff& bytes[1], 0xff& bytes[2], 0xff& bytes[3]); There are two of these actually. Do you mind me sending in one big patch to fix the stuff you found and the fix for Win95/NT that don't support binary values? -- Cheers, Paul.

Re: [2/2] atl: add support for binary values in IRegistrar

2010-11-27 Thread Paul Vriens
On 11/27/2010 10:50 PM, Paul Vriens wrote: On 11/27/2010 10:18 PM, Paul Vriens wrote: I could imagine that binary values are not supported on Win95 but the same (?) issue is also present on some NT4, XP and even Windows7. The XP and Windows7 failures can be explained by the fact that those

Re: [2/2] atl: add support for binary values in IRegistrar

2010-11-27 Thread Paul Vriens
On 11/27/2010 10:18 PM, Paul Vriens wrote: I could imagine that binary values are not supported on Win95 but the same (?) issue is also present on some NT4, XP and even Windows7. The XP and Windows7 failures can be explained by the fact that those users weren't running the tes

Re: [2/2] atl: add support for binary values in IRegistrar

2010-11-27 Thread Paul Vriens
of course) makes the tests succeed on my Win95 box. Does that makes sense? I could imagine that binary values are not supported on Win95 but the same (?) issue is also present on some NT4, XP and even Windows7. So what decides if binary values are supported? -- Cheers, Paul.

Re: wininet: add a stub for InternetShowSecurityInfoByURL

2010-11-25 Thread Paul Vriens
On 11/25/2010 03:35 PM, Austin English wrote: On Wed, Nov 24, 2010 at 11:32 PM, Paul Vriens wrote: On 11/25/2010 03:29 AM, Austin English wrote: Fixes http://bugs.winehq.org/show_bug.cgi?id=25278 Shouldn't you create the A-version and forward to that one in the .spec? That wouldn

Re: wininet: add a stub for InternetShowSecurityInfoByURL

2010-11-24 Thread Paul Vriens
On 11/25/2010 03:29 AM, Austin English wrote: Fixes http://bugs.winehq.org/show_bug.cgi?id=25278 Shouldn't you create the A-version and forward to that one in the .spec? -- Cheers, Paul.

Re: services: Allow one more combined service type

2010-11-23 Thread Paul Vriens
On 11/23/2010 11:17 PM, André Hentschel wrote: Am 23.11.2010 22:31, schrieb Paul Vriens: Hi André, On 11/23/2010 08:45 PM, André Hentschel wrote: I have a service with type 3, this patch allows him to run. It runs perfectly and does not produce FIXMEs or ERRORs, so it's fine. --- D

Re: services: Allow one more combined service type

2010-11-23 Thread Paul Vriens
e that has 'SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTEM_DRIVER'. -- Cheers, Paul.

Re: ntdll/tests: add tests for NtQueryVolumeInformationFile with FileFsVolumeInformation class

2010-11-22 Thread Paul Vriens
On 11/22/2010 07:59 PM, Louis Lenders wrote: +status = NtQueryVolumeInformationFile( dir,&io, buf, sizeof(buf), FileFsVolumeInformation ); You have to use the 'p' one here to please Win9x where this function is not exported. -- Cheers, Paul.

Re: [mscoree/tests 4/4] Fix test failures on W2K and earlier

2010-11-22 Thread Paul Vriens
nd we don't need the test. I was smart enough to make that the last patch (after briefly talking to you in Paris). I'll change the patch and resend the series. -- Cheers, Paul.

Re: [resend]: [dlls/dbgeng]: add initial stub dll implementation

2010-11-19 Thread Paul Vriens
x27;t just copy-paste from MSDN. -- Cheers, Paul.

Re: crypt32/tests: Add tests for decoding enveloped messages.

2010-11-14 Thread Paul Vriens
TE_PERM) and crashes on some Win98: http://test.winehq.org/data/tests/crypt32:msg.html Could you have a look? If you need me to test something on my boxes (pv-winme and pv-nt4srvr) let me know (not all testbot machines fail here). -- Cheers, Paul.

Re: [try 2] Test for window messages of a property sheet with custom dialog proc (bug 12104)

2010-11-13 Thread Paul Vriens
g some traces (see http://testbot.winehq.org/JobDetails.pl?Key=7013). hdlg is always 0 and destroying the window will give you an error ERROR_INVALID_WINDOW_HANDLE. Will investigate further but any help is welcome. -- Cheers, Paul.

Re: Compilation error with latest wine

2010-11-13 Thread Paul Vriens
Hi, rm dlls/atl/atliface.h Cheers, Paul On Nov 13, 2010 12:00 PM, "Joel Holdsworth" wrote: > Hmm, > > Looks like it was caused by commit > 9c4432f69d91007d02c52c50ba565ca795f44765, I think the CLSID isn't being > included properly. Probably easy to fix. > > Joel > > >

Re: [2/11] update Simplified Chinese translation: notepad

2010-11-12 Thread Paul Vriens
n the actual patches. -- Cheers, Paul.

Re: [try 2] Test for window messages of a property sheet with custom dialog proc (bug 12104)

2010-11-11 Thread Paul Vriens
Thoughts/Ideas/Suggestions? -- Cheers, Paul.

Re: inetcpl.cpl: Added Portuguese (Brazilian) translation (try 2)

2010-11-11 Thread Paul Vriens
AZILIAN" at the beginning. There is no need to have this for every resource. -- Cheers, Paul.

Re: [1/3] include: Better distinguish ARM's endianess

2010-10-29 Thread Paul Chitescu
On Friday 29 October 2010 05:34:31 pm André Hentschel wrote: > --- > include/basetsd.h |6 +- > 1 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/include/basetsd.h b/include/basetsd.h > index 6ce0102..aa6e86d 100644 > --- a/include/basetsd.h > +++ b/include/basetsd.h > @@ -

Re: comdlg32: Added Hebrew translation.

2010-10-26 Thread Paul Vriens
On 10/26/2010 10:59 AM, Yaron Shahrabani wrote: What is wrong with the patch? Yaron Shahrabani 2010/10/23 Yaron Shahrabani mailto:sh.ya...@gmail.com>> Verified by Paul Vriens Nothing: http://source.winehq.org/git/wine.git/?a=co

Re: Re : missing tests in test.winehq.org

2010-10-24 Thread Paul Vriens
that platform. What did you expect to see? -- Cheers, Paul.

Re: missing tests in test.winehq.org

2010-10-24 Thread Paul Vriens
On 10/24/2010 09:23 AM, paulo lesgaz wrote: Hello, looking at http://test.winehq.org, i remarked that the file ddraw/tests/ddrawmodes does not exist and so it is never tested. What about: http://test.winehq.org/data/tests/ddraw:ddrawmodes.html or am I missing something? -- Cheers, Paul.

Re: winegstreamer error with 'make install'

2010-10-22 Thread Paul Vriens
On 10/22/2010 09:37 PM, Reece Dunn wrote: On 22 October 2010 20:07, Paul Vriens wrote: Hi, Current Git (Fedora 13) gives me: /usr/bin/install -c winegstreamer.so /usr/local/lib64/wine/winegstreamer.so /usr/bin/install: cannot stat `winegstreamer.so': No such file or directory There

winegstreamer error with 'make install'

2010-10-22 Thread Paul Vriens
Hi, Current Git (Fedora 13) gives me: /usr/bin/install -c winegstreamer.so /usr/local/lib64/wine/winegstreamer.so /usr/bin/install: cannot stat `winegstreamer.so': No such file or directory There is a winegstreamer.dll.so in this directory. Anyone? -- Cheers, Paul.

Re: Website: Change language string

2010-10-17 Thread Paul Vriens
aron, See http://source.winehq.org/git/website.git/?a=commitdiff;h=6f11f1577987817638e1f95b55d195d64fa1e83d -- Cheers, Paul.

Re: msi/tests: Move test coverage for standard actions to a separate module.

2010-10-14 Thread Paul Vriens
on the load on testbot we might still see some timeouts. Maybe it's a good idea to not use the restore facility on most (all?) of the testbot servers? -- Cheers, Paul.

Re: (6th try) winhlp32: Added Hebrew translation

2010-10-05 Thread Paul Vriens
+IDD_SEARCH DIALOG 0, 0, 200, 190 +STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU > +EXSTYLE WS_EX_LAYOUTRTL > +FONT 8, "MS Shell Dlg" -- Cheers, Paul.

Re: Question on use of TextMetricsW

2010-10-03 Thread Paul Vriens
something improper? Should I clear the tmw structure between calls to GetTextMetricsW? When I run this on native WindowsXP (which I have access to) the average character width changes to 9, but remains the same for all four font types. TTIA. James McKenzie Hi James, Doesn't the WM_SETFONT only set it for the control? You are retrieving the font characteristics from the DC though. -- Cheers, Paul.

Re: (5th try) winhlp32: Added Hebrew translation

2010-10-03 Thread Paul Vriens
On 10/03/2010 05:04 PM, Yaron Shahrabani wrote: + +LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT + Hi Yaron, This piece should go. And I still have an apply warning for your Makefile.in patch. -- Cheers, Paul.

Re: [PATCH] user32: Update Finnish translation.

2010-09-25 Thread Paul Vriens
unofficial translation only, or both? If there is no official LGPL license in your language, you can just use the English one. Thanks for your help. It's is me/us who should thank you! -- Cheers, Paul.

Re: Right-To-Left (RTL) languages and Wine

2010-09-24 Thread Paul Vriens
On 07/30/2010 10:02 AM, Alexandre Julliard wrote: Paul Vriens writes: On 07/29/2010 08:13 PM, Alexandre Julliard wrote: That depends on the situation. In some cases it can be set globally through the version resources, in other cases it will have to be set on an individual resource basis, or

Re: [PATCH 1/4] kernel32: add test for WaitForSingleObject with lower 2 bits of handles set

2010-09-22 Thread Paul Vriens
e, but I guess nobody does that. -- Cheers, Paul.

Re: ipconfig: Add the Polish translation.

2010-09-21 Thread Paul Vriens
On 09/19/2010 07:30 PM, Paul Vriens wrote: On 09/19/2010 11:11 AM, Łukasz Wojniłowicz wrote: +#include "ipconfig.h" + +LANGUAGE LANG_POLISH, SUBLANG_DEFAULT + +STRINGTABLE Hi Łukasz, This newly created file is UTF-8 so you should add the needed pragma (or convert to some

Re: ipconfig: Add the Polish translation.

2010-09-19 Thread Paul Vriens
odepage 1250 is in use. The same is true for your "inetcpl: Add the Polish translation" patch. -- Cheers, Paul.

Re: winhlp32: Added Hebrew translation

2010-09-17 Thread Paul Vriens
btw? -- Cheers, Paul.

Re: [4/4] msxml3: Properly set default value for SelectionLanguage property

2010-09-15 Thread Paul Vriens
On 09/15/2010 04:11 PM, Paul Vriens wrote: On 09/14/2010 07:20 AM, Nikolay Sivov wrote: Properly set default value for SelectionLanguage property Hi Nikolay, I wondered why there were only a few testbot reports on test.winehq.org. Looking at the reports on test.winehq.org (I have an account

Re: [4/4] msxml3: Properly set default value for SelectionLanguage property

2010-09-15 Thread Paul Vriens
limit (runaway test?) -- Cheers, Paul.

Re: kernel32: add a stub for GetSystemDEPPolicy()

2010-09-12 Thread Paul Vriens
f enum _DEP_SYSTEM_POLICY_TYPE { +AlwaysOn, +AlwaysOff, +OptIn, +OptOut +} DEP_SYSTEM_POLICY_TYPE; MSDN states that AlwaysOff is 0, that would suggest this enum is wrong, not? -- Cheers, Paul.

Re: user32: Update Italian translation (try 2)

2010-09-10 Thread Paul Vriens
On 09/09/2010 07:52 PM, Luca Bennati wrote: Fix for Paul's comment Hi Luca, You forgot the patch. -- Cheers, Paul.

Re: user32: Update Italian translation

2010-09-09 Thread Paul Vriens
On 09/09/2010 04:09 PM, Luca Bennati wrote: Hi Luca, You need to add the UTF-8 pragma: Warning: string "&Sì" seems to be UTF-8 but codepage 1252 is in use. Warning: string "&Più finestre..." seems to be UTF-8 but codepage 1252 is in use. -- Cheers, Paul.

Re: [2/7] urlmon/tests: Removed no longer needed todo_wine's

2010-09-08 Thread Paul Vriens
J's box as otherwise previous patches would have been rejected. Judging by the test.winehq.org results there are only todo_wine's and no failures on Wine. -- Cheers, Paul.

Re: dlls/rstrtmgr: add stubs for RmGetList and RmRegisterResources

2010-09-08 Thread Paul Vriens
On 09/09/2010 07:41 AM, Austin English wrote: +@ stdcall RmGetList(long ptr ptr ptr) Hi Austin, This function has 5 parameters. -- Cheers, Paul.

specfiles containing 'str' instead of 'wstr' for some W-functions

2010-09-07 Thread Paul Vriens
Hi, I see some specfiles that contain 'str' instead of the correct 'wstr'. Is it worth sending a patch to fix these? If so, only one? -- Cheers, Paul.

Re: ntdll: Don't cancel loading on IMAGE_FILE_RELOCS_STRIPPED

2010-09-07 Thread Paul Chitescu
On Tuesday 07 September 2010 06:47:12 pm André Hentschel wrote: > Am 07.09.2010 17:27, schrieb Marcus Meissner: > > On Tue, Sep 07, 2010 at 04:37:49PM +0200, André Hentschel wrote: > >> give the file a try when it only links to ordinals instead of just > >> stopping execution here. --- > >> dlls/n

Using the eventlog API for Wine errors

2010-09-07 Thread Paul Vriens
ld then 'easily' connect to the appropriate eventlog(s). The benefit is that it will make sure the eventlog API is actually implemented and the GUI could tap into historical (until .wine is cleaned) information as well. -- Cheers, Paul.

Re: Does testbot's MingW miscompile winmm:midi tests?

2010-09-06 Thread Paul Vriens
On 09/06/2010 11:02 AM, joerg-cyril.hoe...@t-systems.com wrote: Hi, on test.winehq, WinME systems always report 8 rc=MMSYSERR_INVALPARAM errors. However, when running a MSVC compiled binary (as found in testbot job #4990), no such error occurs. Paul Vriens wrote: I only see those 8 errors

  1   2   3   4   5   6   7   8   9   10   >