Re: [PATCH] implement MSIMODIFY_MERGE function in TABLE_modify

2012-03-26 Thread Dmitry Timoshkov
Andoni Morales ylat...@gmail.com wrote: -case MSIMODIFY_REPLACE: case MSIMODIFY_MERGE: + /* check for a duplicated key */ + r = msi_table_find_row( tv, rec, row, column ); + if (r == ERROR_SUCCESS) { +/* check that both are identical */ +r =

Re: [PATCH] implement MSIMODIFY_MERGE function in TABLE_modify

2012-03-26 Thread Hans Leidekker
On Mon, 2012-03-26 at 11:14 +0200, Andoni Morales wrote: -case MSIMODIFY_REPLACE: case MSIMODIFY_MERGE: + /* check for a duplicated key */ + r = msi_table_find_row( tv, rec, row, column ); + if (r == ERROR_SUCCESS) { +/* check that both are identical */ +

Re: msi: Implement MSIMODIFY_MERGE function in TABLE_modify.

2012-03-26 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=17479 Your paranoid

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Alexandre Julliard
Dmitry Timoshkov dmi...@baikal.ru writes: This patch makes dlls/user32/input.c and dlls/user32/monitor.c tests pass on a system without XInput2. It will break dinput, we rely on the clip rectangle being reset. -- Alexandre Julliard julli...@winehq.org

Re: GSoC proposal

2012-03-26 Thread Aric Stewart
Hi, Not to argue if it will be useful or not, as I do not know. I think this will be technically very hard. You will have to be able to get the keystrokes for a native linux applications feed them into WINE, have wine do the IME processing and then get the resulting characters and feed them

Re: d3d10core: Standardize COM aggregation for d3d10_device.

2012-03-26 Thread Michael Stefaniuc
Now that Alexandre is back and Jacek didn't want to beat me to it it is time to finish my reply... On 03/22/2012 01:06 AM, Henri Verbeet wrote: On 22 March 2012 00:50, Michael Stefaniuc mstef...@redhat.de wrote: -static HRESULT STDMETHODCALLTYPE d3d10_device_inner_QueryInterface(IUnknown

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Dmitry Timoshkov
Alexandre Julliard julli...@winehq.org wrote: This patch makes dlls/user32/input.c and dlls/user32/monitor.c tests pass on a system without XInput2. It will break dinput, we rely on the clip rectangle being reset. Is that a way how dinput detects xinput2 support? Or is that a general

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Vitaliy Margolen
On 03/26/2012 06:14 AM, Alexandre Julliard wrote: Dmitry Timoshkovdmi...@baikal.ru writes: This patch makes dlls/user32/input.c and dlls/user32/monitor.c tests pass on a system without XInput2. It will break dinput, we rely on the clip rectangle being reset. I'd say it again, dinput should

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Alexandre Julliard
Vitaliy Margolen wine-de...@kievinfo.com writes: On 03/26/2012 06:14 AM, Alexandre Julliard wrote: Dmitry Timoshkovdmi...@baikal.ru writes: This patch makes dlls/user32/input.c and dlls/user32/monitor.c tests pass on a system without XInput2. It will break dinput, we rely on the clip

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Alexandre Julliard
Dmitry Timoshkov dmi...@baikal.ru writes: Is that a way how dinput detects xinput2 support? Or is that a general approach to detect if a driver supports mouse clipping? How did it work before? It's used to detect that xinput2 is not supported. -- Alexandre Julliard julli...@winehq.org

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Dmitry Timoshkov
Alexandre Julliard julli...@winehq.org wrote: Is that a way how dinput detects xinput2 support? Or is that a general approach to detect if a driver supports mouse clipping? How did it work before? It's used to detect that xinput2 is not supported. Apparently dinput shouldn't rely on

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Alexandre Julliard
Dmitry Timoshkov dmi...@baikal.ru writes: Alexandre Julliard julli...@winehq.org wrote: Is that a way how dinput detects xinput2 support? Or is that a general approach to detect if a driver supports mouse clipping? How did it work before? It's used to detect that xinput2 is not

Re: [PATCH 1/2] shell32: Prepare ASSOC_GetValue and ASSOC_ReturnData to work on non WCHAR* data

2012-03-26 Thread Alexandre Julliard
Piotr Caban pi...@codeweavers.com writes: --- dlls/shell32/assoc.c | 49 + 1 files changed, 25 insertions(+), 24 deletions(-) It doesn't work here: ../../../tools/runtest -q -P wine -M shlwapi.dll -T ../../.. -p shlwapi_test.exe.so assoc.c

Re: Spelling errors in en_US translation

2012-03-26 Thread Francois Gouget
On Fri, 16 Mar 2012, Julian Rüger wrote: Am Freitag, den 16.03.2012, 11:05 +0100 schrieb Francois Gouget: [...] * All of Wine resources are supposed to be 100% American English. * en_US is automatically filled using Wine's resources. * en is manually translated to British English,

Re: [PATCH] implement MSIMODIFY_MERGE function in TABLE_modify

2012-03-26 Thread Andoni Morales
El 26 de marzo de 2012 11:28, Hans Leidekker h...@codeweavers.comescribió: On Mon, 2012-03-26 at 11:14 +0200, Andoni Morales wrote: -case MSIMODIFY_REPLACE: case MSIMODIFY_MERGE: + /* check for a duplicated key */ + r = msi_table_find_row( tv, rec, row, column ); +

Re: [PATCH] implement MSIMODIFY_MERGE function in TABLE_modify

2012-03-26 Thread Andoni Morales
El 26 de marzo de 2012 11:48, Andoni Morales ylat...@gmail.com escribió: El 26 de marzo de 2012 11:28, Hans Leidekker h...@codeweavers.comescribió: On Mon, 2012-03-26 at 11:14 +0200, Andoni Morales wrote: -case MSIMODIFY_REPLACE: case MSIMODIFY_MERGE: + /* check for a

Re: msi: Implement MSIMODIFY_MERGE function in TABLE_modify.

2012-03-26 Thread Andoni Morales
El 26 de marzo de 2012 13:38, Marvin test...@testbot.winehq.org escribió: Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be

Re: Web based translation tool

2012-03-26 Thread Michal Čihař
Hi Dne Mon, 19 Mar 2012 10:52:58 +0100 Michal Čihař mic...@cihar.com napsal(a): For the projects where I use Weblate I don't consider this as an issue as merging commits would probably cause more problems than it would solve. With current approach, you simply merge weblate branch to master

Re: PDB format documentation.

2012-03-26 Thread Roald Ribe
On Sun, 25 Mar 2012 05:24:45 -0300, Svyatoslav Kuzmich svatosl...@gmail.com wrote: Hello dear Wine mailing list! I've found that Wine dbghelp.dll includes PDB file parser. Does anyone know where I can find documentation of PDB internal structure? http://undocumented.rawol.com/ May have

Regarding Gsoc 2012

2012-03-26 Thread prateek papriwal
I am Prateek Papriwal, a second year undergraduate student persuing Bachelors in Technology in the Indian Institute of Technology Delhi, in the department of Electrical Engineering. I love programming in C . I was told about GSOC 2012 by one of my seniors, who saw passion for coding in me. I

Re: My GSoC 2012 proposal

2012-03-26 Thread Lucas Zawacki
About the joystick configuration tool proposal. My plans are: * Start development as a standalone program, and then include it in the control panel * Enumerate all the joysticks with dinput * Simple windows GUI. Prototypes are here http://dl.dropbox.com/u/2701879/wiki/gsoc/dialog1.png (main

Re: My GSoC 2012 proposal

2012-03-26 Thread Lucas Zawacki
* Compatibility and exchange of installation recipes with other frontends like PlayOnLinux * Winetricks and AppDB integration. A way to mirror in AppDB the dependencies and workarounds employed by winetricks recipes. Winetricks is not a mentoring organization for Google Summer of Code. That

Re: GSoC proposal

2012-03-26 Thread Hin-Tak Leung
--- On Mon, 26/3/12, Cheer Xiao xiaqq...@gmail.com wrote: What you are describing is the desirability of predictive and phrasal input methods in general, where the computer can anticipate and guess your intention as you type. We only disagree in the definition of what a decent IME

[GSoC] participate and contribute in opensource community

2012-03-26 Thread Narendra Kishan
Sir, I am Naren Krishna, I am students of CSE, I have some background in c++ and I have been using wine to run *.exe files in ubuntu. I want to help improve this software as this is a very good software, what do you expect from one. Please guide me, tell me if you want some bugs to be fixed.

Re: Web based translation tool

2012-03-26 Thread Frédéric Delanoy
On Mon, Mar 26, 2012 at 16:23, Michal Čihař mic...@cihar.com wrote: With some sort of merging of commits things get more complex. It turned out such feature seems to be important for more projects, so I will end up implementing some way of merging of commits for 1.0. Details can be found at

Fwd: Student Proposals Now Being Accepted for Google Summer of Code

2012-03-26 Thread Maarten Lankhorst
I'm still missing some people who haven't signed up as mentor yet. To all students, I hope you discussed your ideas on the mailing list and/or irc, good luck submitting your proposal! :D Originele bericht Onderwerp: Student Proposals Now Being Accepted for Google Summer

Re: winex11.drv: Do not trash existing clip rectangle if XInput2 is not available.

2012-03-26 Thread Vitaliy Margolen
On 03/26/2012 08:15 AM, Alexandre Julliard wrote: Vitaliy Margolenwine-de...@kievinfo.com writes: On 03/26/2012 06:14 AM, Alexandre Julliard wrote: Dmitry Timoshkovdmi...@baikal.ru writes: This patch makes dlls/user32/input.c and dlls/user32/monitor.c tests pass on a system without

Need suggestion to choose a GSoC idea

2012-03-26 Thread Qian Hong
Hi all, I'm a student in Department of Mathematics, Sun Yat-sen University. My irc nick name is fracting, my real name is Qian Hong. I'm in GMT+8 time zone, availible on 10:00 to 18:00 (GMT+8) on #winehackers. I know C/bash and some Linux skills. Currently I'm an intern in Redhat, working in the

Re: Need suggestion to choose a GSoC idea

2012-03-26 Thread HolyCause
Qian, - Improve Wine App install / App running testing This idea is similar with Austin's early work [18], my idea is using sikuli [19] instead of autohotkey, since sikuli is more powerful for complex work. Sikuli using tesseract as orc engine, so if we done this job we can prevent many font