Re: [GSoC] My proposal for GSoC 2013

2013-03-20 Thread Austin English
On Wed, Mar 20, 2013 at 11:35 AM, Gediminas Jakutis wrote: > Hello! > For GSoC, I am suggesting my own idea. In case this idea is not good, > I am open to changing it, thinking of a new one, or adopting one. > My idea: I have noticed that Wine's virtual desktop feature is very > limited - if the f

Re: winemac: Implement GetDeviceGammaRamp() and SetDeviceGammaRamp().

2013-03-20 Thread Ken Thomases
On Mar 20, 2013, at 1:33 PM, André Hentschel wrote: > Am 18.03.2013 04:41, schrieb Ken Thomases: >> --- >> dlls/winemac.drv/display.c | 131 >> >> dlls/winemac.drv/gdi.c |4 +- >> dlls/winemac.drv/macdrv.h |2 + >> 3 files changed, 135 inser

Re: [GSoC] My proposal for GSoC 2013

2013-03-20 Thread Vincent Povirk
I think the reasons for the limitation on the virtual desktop setting are more ideological than technical. It used to work the way you say, but then Wine's desktop management was overhauled so that: * Explorer.exe manages all desktop windows, including the virtual desktop. I believe this is requir

[GSoC] My proposal for GSoC 2013

2013-03-20 Thread Gediminas Jakutis
Hello! My name is Gediminas Jakutis. I study Informatics Engineering [bachelor / undergraduate] at Kaunas University of Technology, second year. I wish to try out GSoC for the first time by helping to improve Wine. My primary programming language is C. I am self-taught in C, but I believe my knowl

Re: winemac: Implement GetDeviceGammaRamp() and SetDeviceGammaRamp().

2013-03-20 Thread André Hentschel
Am 18.03.2013 04:41, schrieb Ken Thomases: > --- > dlls/winemac.drv/display.c | 131 > dlls/winemac.drv/gdi.c |4 +- > dlls/winemac.drv/macdrv.h |2 + > 3 files changed, 135 insertions(+), 2 deletions(-) Hi, wrt macdrv_SetDeviceGammaRamp, the

Re: [PATCH 2/2] msvcrt: Fixed fgetwc behavior on multibyte characters and unicode files

2013-03-20 Thread Piotr Caban
On 03/20/13 09:41, Akihiro Sagawa wrote: On Mon, 18 Mar 2013 17:11:04 +0100, Piotr Caban wrote: +char mbs[2]; This should be a constant, like MSVCRT_MB_LEN_MAX. +int len = 0; +ch = MSVCRT_fgetc(file); +if(ch != MSVCRT_EOF) { +mbs[0] = (char)ch; +

Re: [PATCH 2/2] msvcrt: Fixed fgetwc behavior on multibyte characters and unicode files

2013-03-20 Thread Akihiro Sagawa
On Mon, 18 Mar 2013 17:11:04 +0100, Piotr Caban wrote: > +char mbs[2]; This should be a constant, like MSVCRT_MB_LEN_MAX. > +int len = 0; > +ch = MSVCRT_fgetc(file); > +if(ch != MSVCRT_EOF) { > +mbs[0] = (char)ch; > +if(MSVCRT_isleadbyte(mbs[

Re: [7/10] winemenubuilder: Create a basic Info.plist.

2013-03-20 Thread Per Johansson
On Tue, Mar 19, 2013 at 5:57 AM, Ken Thomases wrote: > On Mar 17, 2013, at 12:18 PM, Per Johansson wrote: > >> +namestr = CFStringCreateWithCString(NULL, link_name, >> CFStringGetSystemEncoding()); > > You should use CFStringCreateWithFileSystemRepresentation() to create > CFStrings from POS