Re: GDI+ pageoffset

2012-04-11 Thread Austin English
On Wed, Apr 11, 2012 at 11:58, Stepa Nick wrote: >> Run with `WINEDEBUG=loaddll wine my.exe` and ensure that builtin gdiplus >> is being used. > > > I run `WINEDEBUG=loaddll wine my.exe` and get such output: > >> trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b81: >> builtin >> tr

Re: GDI+ pageoffset

2012-04-11 Thread Stepa Nick
> > Run with `WINEDEBUG=loaddll wine my.exe` and ensure that builtin gdiplus > is being used. I run `WINEDEBUG=loaddll wine my.exe` and get such output: > trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b81: builtin > trace:loaddll:load_native_dll Loaded L"Z:\\home\\user\\tmp\\te

Re: ws2_32/tests: Update hostent struct tests

2012-04-11 Thread Austin English
On Wed, Apr 11, 2012 at 13:27, Bruno Jesus <00cp...@gmail.com> wrote: > On Wed, Apr 11, 2012 at 15:05, Austin English wrote: >> On Tue, Apr 10, 2012 at 21:13, Bruno Jesus <00cp...@gmail.com> wrote: >> You should use win_skip so that the tests will only be skipped on >> windows (we'd want the failu

Re: ws2_32/tests: Update hostent struct tests

2012-04-11 Thread Bruno Jesus
On Wed, Apr 11, 2012 at 15:05, Austin English wrote: > On Tue, Apr 10, 2012 at 21:13, Bruno Jesus <00cp...@gmail.com> wrote: > You should use win_skip so that the tests will only be skipped on > windows (we'd want the failure to be exposed on wine). You mean I should use win_skip and remove the r

Re: ws2_32/tests: Update hostent struct tests

2012-04-11 Thread Austin English
On Tue, Apr 10, 2012 at 21:13, Bruno Jesus <00cp...@gmail.com> wrote: > * Added a final required test for the h->h_addr_list[0] to show we > must put it in the right place. > * Removed the cached use of older gethostbyname result since the > memory is static and turned into garbage in windows if th

Re: gdi32/dibdrv: don't add_join if points are coincident in wide_line_segments

2012-04-11 Thread Alexandre Julliard
Daniel Lehman writes: > This fixes a crash in PolyPolyline if points are in the same spot > > There were timeouts in the Testbot but were unrelated to anything I changed > > From 23edf2c2b89b98ef18849806e74b5d77f7889160 Mon Sep 17 00:00:00 2001 > From: Daniel Lehman > Date: Wed, 25 Jan 2012 13:4

Re: d3drm: Some includes are useless

2012-04-11 Thread Alexandre Julliard
Nozomi Kodama writes: > From 9772529c63a9c11bc169545b6d68722308591a2f Mon Sep 17 00:00:00 2001 > From: Nozomi Kodama > Date: Tue, 10 Apr 2012 10:50:31 +0200 > Subject: Some includes are useless That sort of change is not useful, the headers will be included anyway. -- Alexandre Julliard julli

Re: GDI+ pageoffset

2012-04-11 Thread Austin English
On Wed, Apr 11, 2012 at 10:23, Stepa Nick wrote: > Hello. I have following code: > >> Bitmap * bmp = new Bitmap(500, 500, PixelFormat32bppARGB); >> { >>   Graphics gr(bmp); >> >>   //FIRST LINE >>   PointF* local1PointF = new PointF(17.823631, 89.429169); >>   PointF* local2PointF = new PointF(17.

Re: [PATCH 3/3] comctl32: Truncate the info tip text when using ANSI version messages.

2012-04-11 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=17802 Your paranoid android

Re: [PATCH 2/3] comctl32/tests: Add tests for long info tip texts.

2012-04-11 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=17801 Your paranoid android

GDI+ pageoffset

2012-04-11 Thread Stepa Nick
Hello. I have following code: > Bitmap * bmp = new Bitmap(500, 500, PixelFormat32bppARGB); > { > Graphics gr(bmp); > > //FIRST LINE > PointF* local1PointF = new PointF(17.823631, 89.429169); > PointF* local2PointF = new PointF(17.823631, 87.577080); > > //SECOND LINE > PointF* local3Po

Re: [PATCH 1/2] server: Add mechanism to retrieve the connect time of a socket (try 2).

2012-04-11 Thread Erich E. Hoover
On Wed, Apr 11, 2012 at 1:18 AM, Dmitry Timoshkov wrote: > "Erich E. Hoover" wrote: >> ... >> +    sock=(struct sock *)get_handle_obj( current->process, req->handle, >> FILE_WRITE_ATTRIBUTES, &sock_ops ); > > Shouldn't the required access be FILE_READ_ATTRIBUTES or FILE_READ_PROPERTIES? > Why wr

Re: [PATCH 1/6] msvcrt: Rewrite asctime function

2012-04-11 Thread Piotr Caban
On 04/10/12 20:04, David Laight wrote: But see also http://www.hermetic.ch/cal_stud/cal_art.html for some info about which years were/are actually leap years ... This is not how msvcrt handles dates. Additionally most of the functions are refusing to work on dates before 1900.

Re: [PATCH 1/2] server: Add mechanism to retrieve the connect time of a socket (try 2).

2012-04-11 Thread Dmitry Timoshkov
"Erich E. Hoover" wrote: > +/* Get information about a socket */ > +DECL_HANDLER(get_socket_info) > +{ > +struct sock *sock; > + > +sock=(struct sock *)get_handle_obj( current->process, req->handle, > FILE_WRITE_ATTRIBUTES, &sock_ops ); Shouldn't the required access be FILE_READ_ATTRIBU