Re: [PATCH] dlls/gdi32/fretype.c: Avoid division by zero.

2013-05-03 Thread Dmitry Timoshkov
Max TenEyck Woodbury wrote: > >> +if ( font->aveWidth && font->potm->otmTextMetrics.tmHeight ) { > >> +if (((font->aveWidth + font->potm->otmTextMetrics.tmHeight - > >> 1) / > >> + font->potm->otmTextMetrics.tmHeight) > 100) { > >> WARN("Igno

Re: [PATCH] dlls/gdi32/fretype.c: Avoid division by zero.

2013-05-03 Thread Max TenEyck Woodbury
On 05/04/2013 12:38 AM, Dmitry Timoshkov wrote: m...@mtew.isa-geek.net wrote: +if ( font->aveWidth && font->potm->otmTextMetrics.tmHeight ) { +if (((font->aveWidth + font->potm->otmTextMetrics.tmHeight - 1) / + font->potm->otmTextMetrics.tmHeight) > 100) {

Re: [PATCH] dlls/gdi32/fretype.c: Avoid division by zero.

2013-05-03 Thread Dmitry Timoshkov
m...@mtew.isa-geek.net wrote: > +if ( font->aveWidth && font->potm->otmTextMetrics.tmHeight ) { > +if (((font->aveWidth + font->potm->otmTextMetrics.tmHeight - 1) / > + font->potm->otmTextMetrics.tmHeight) > 100) { > WARN("Ignoring too large fon

Re: [PATCH 1/6] ole32: Added IExternalConnection support.

2013-05-03 Thread Alexandre Julliard
Jacek Caban writes: > --- > dlls/ole32/compobj_private.h | 2 ++ > dlls/ole32/stubmanager.c | 16 > 2 files changed, 18 insertions(+) It doesn't work here: ../../../tools/runtest -q -P wine -M ole32.dll -T ../../.. -p ole32_test.exe.so defaulthandler.c && touch defaultha

Re: GSoC 2013 - Registry Merging Project

2013-05-03 Thread orzhvs
Hi Juan, Thank you for your reply. Sincerely sorry for my late application, you know that's really not pleasing. But I think that increase my enthusiasm at the same time. I will keep focus and spend more time on it as I'm just getting start in the community. I love it even more when it seems to be

Re: GSoC 2013 - Registry Merging Project

2013-05-03 Thread Juan Lang
Hi Guo Jian, just so you know, there's another application for the same project. This doesn't mean that yours can't be accepted, but it does impact your chances. Thank you for your interest. Good luck, --Juan On Fri, May 3, 2013 at 1:05 AM, orzhvs wrote: > Hi. > I'm applying for the Google

Re: [PATCH] d3dcompiler: Add a LUT to find compilation targets info.

2013-05-03 Thread Christian Costa
2013/5/3 Matteo Bruni > 2013/5/2 Christian Costa : > > > > --- > > dlls/d3dcompiler_43/compiler.c| 101 > +++-- > > dlls/d3dcompiler_43/d3dcompiler_private.h |1 > > 2 files changed, 81 insertions(+), 21 deletions(-) > > > > diff --git a/dlls/d3dcompiler_

Re: IID mess

2013-05-03 Thread Daniel Jeliński
Thanks, INITGUID was the piece I was missing. 2013/5/3 Damjan Jovanovic > Check that you are only doing ONE of the following: > 1. Use "-luuid", which you are using > 2. #include or #define INITGUID (which is what it does) > before including the relevant COM headers > Never both, or you'll get

Re: [PATCH] d3dcompiler: Add a LUT to find compilation targets info.

2013-05-03 Thread Matteo Bruni
2013/5/2 Christian Costa : > > --- > dlls/d3dcompiler_43/compiler.c| 101 > +++-- > dlls/d3dcompiler_43/d3dcompiler_private.h |1 > 2 files changed, 81 insertions(+), 21 deletions(-) > > diff --git a/dlls/d3dcompiler_43/compiler.c b/dlls/d3dcompiler_43/com

Re: [PATCH 5/6] ieframe: Added more InternetExplorer object tests.

2013-05-03 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=25429 Your paranoid android

Re: IID mess

2013-05-03 Thread Damjan Jovanovic
Check that you are only doing ONE of the following: 1. Use "-luuid", which you are using 2. #include or #define INITGUID (which is what it does) before including the relevant COM headers Never both, or you'll get those multiple definitions. Damjan On Fri, May 3, 2013 at 11:31 AM, Daniel Jeliński

Re: IID mess

2013-05-03 Thread Daniel Jeliński
Additional info: after my patches amstream fails to link complaining about duplicate IID_IResourceManager: ~/wine-git/dlls/amstream$ make ../../tools/winegcc/winegcc -m32 -B../../tools/winebuild --sysroot=../.. -fasynchronous-unwind-tables -shared ./amstream.spec amstream.o audiodata.o main.o media

GSoC 2013 - Registry Merging Project

2013-05-03 Thread orzhvs
Hi. I'm applying for the Google Summer of Code 2013, this is my proposal for the registry merging project. I'll work on improving Wine's registry in its stability and simulation to solve frequently seen non user-friendly problems, which usually caused by that application or system settings

Re: IPC between linux processes and wine processes

2013-05-03 Thread jordan
Hi On Fri, May 3, 2013 at 2:55 AM, Paul Chitescu wrote: > On Wednesday 01 May 2013 10:37:38 pm Alexandre Bique wrote: >> Hi, >> >> I plan to write a Linux VST bridge to Windows VST. This could improve >> windows VST support in our native DAW. Not too long ago the FSThost and myself, were brainst