Re: GSoC: dinput8 Action Mapping

2011-06-24 Thread Lucas Zawacki
> As a hello word programmer, i can't judge the code quality, but i > can say, that it worked nearly flawlessly. I was able to drive/play > on keyboard :-D That's very nice to hear :) > The only issue i found in NFS's keyboard configuration: > * When i press PAUSE KEY, then NFS says "Num_Lock" > *

Re: GSoC: dinput8 Action Mapping

2011-06-24 Thread wylda
> Is there any problem with the latest patches I > sent? They're sitting there with the 'New' status but I have no > feedback > > (good or bad) about them. > > Cheers Hi Lucas, i put your patches on top of 1.3.23 and kick in Need For Speed Undeground 1, i.e. testing bug 8754. As a hello word

Re: usability study: "30 days with Ubuntu" author had trouble with wine

2011-06-24 Thread Edward Savage
On 25/06/2011, at 11:38, Austin English wrote: > On Fri, Jun 24, 2011 at 18:58, Dan Kegel wrote: >> http://www.pcworld.com/businesscenter/article/231065/ubuntu_linux_day_23_would_you_like_some_wine_with_that.html >> >> First problem - ubuntu's package manager is unclear: >> >> "I opened up my

Re: usability study: "30 days with Ubuntu" author had trouble with wine

2011-06-24 Thread Austin English
On Fri, Jun 24, 2011 at 18:58, Dan Kegel wrote: > http://www.pcworld.com/businesscenter/article/231065/ubuntu_linux_day_23_would_you_like_some_wine_with_that.html > > First problem - ubuntu's package manager is unclear: > > "I opened up my handy-dandy Ubuntu Software Center and typed Wine in > the

usability study: "30 days with Ubuntu" author had trouble with wine

2011-06-24 Thread Dan Kegel
http://www.pcworld.com/businesscenter/article/231065/ubuntu_linux_day_23_would_you_like_some_wine_with_that.html First problem - ubuntu's package manager is unclear: "I opened up my handy-dandy Ubuntu Software Center and typed Wine in the search field, and...WTF? There are 14 matching items that

Re: shouldn't the 1.3 dependencies include binfmt-support and lib32nss

2011-06-24 Thread Austin English
On Jun 24, 2011 6:04 PM, "Susan Cragin" wrote: > > Just wondering. > apt-get build-dep wine1.3 does not load binfmt-support and lib32nss... > Installation of natspeak requires them. > The installation script tries to grab them but failed for me. That's a packaging question. Scott?

shouldn't the 1.3 dependencies include binfmt-support and lib32nss

2011-06-24 Thread Susan Cragin
Just wondering. apt-get build-dep wine1.3 does not load binfmt-support and lib32nss... Installation of natspeak requires them. The installation script tries to grab them but failed for me.

Ars Technica article

2011-06-24 Thread Brian Vincent
Here's some light reading for your weekend enjoyment. I found this on Ars Technica and thought it was a pretty good summary of some stuff from Microsoft's past and a pretty good guess at how some future technology pieces fit together. http://arstechnica.com/microsoft/news/2011/06/windows-8-for-so

Re: How to do single-step debugging while testing?

2011-06-24 Thread Michael Mc Donnell
On Fri, Jun 24, 2011 at 3:24 PM, Michael Mc Donnell wrote: > On Fri, Jun 24, 2011 at 2:56 PM, Stefan Dösinger > wrote: >> On Friday 24 June 2011 14:44:10 Michael Mc Donnell wrote: >>> Now I want to connect my graphical debugger. I enter "target remote >>> localhost:57380" in ddd's command line a

Re: Behavior of SHChangeNotify

2011-06-24 Thread Andrew Eikum
On 06/24/2011 12:27 PM, Jay Yang wrote: To try to implement copy-paste for shell folders, I used SHFileOperation for the actual copy. SHFileOperation calls SHChangeNotify to notify listeners about changes to the file system. But I noticed that the shell view would not update correctly if it was

Behavior of SHChangeNotify

2011-06-24 Thread Jay Yang
To try to implement copy-paste for shell folders, I used SHFileOperation for the actual copy. SHFileOperation calls SHChangeNotify to notify listeners about changes to the file system. But I noticed that the shell view would not update correctly if it was at 'C:\' but it would if it was at '/ho

Re: GSoC: dinput8 Action Mapping

2011-06-24 Thread Ricardo Filipe
there was no commit round today yet. usually allow for 2 days to pass if your patches are still "new". if then there is no feedback you can try asking in #winehackers 2011/6/24 Lucas Zawacki > Is there any problem with the latest patches I sent? They're sitting > there with the 'New' status but

Re: [1/3] cmd/tests: Use plain strings instead of char arrays for keywords

2011-06-24 Thread Dan Kegel
2011/6/24 Frédéric Delanoy : > On Fri, Jun 24, 2011 at 17:16, Dan Kegel wrote: >> Frédéric Delanoy wrote: >> -    static const char escaped_space[] = {'@','s','p','a','c','e','@','\0'}; >> +    static const char *escaped_space = "@space@"; >> >> I'm not sure it's worth the effort, since eventually

Re: GSoC: dinput8 Action Mapping

2011-06-24 Thread Lucas Zawacki
Is there any problem with the latest patches I sent? They're sitting there with the 'New' status but I have no feedback (good or bad) about them. Cheers 2011/6/20 Lucas Zawacki : >> Because callback doesn't have any string parameters it would be an easy >> thing to do. > > I've made an EnumDevice

Re: [1/3] cmd/tests: Use plain strings instead of char arrays for keywords

2011-06-24 Thread Frédéric Delanoy
On Fri, Jun 24, 2011 at 17:16, Dan Kegel wrote: > Frédéric Delanoy wrote: > -    static const char escaped_space[] = {'@','s','p','a','c','e','@','\0'}; > +    static const char *escaped_space = "@space@"; > > I'm not sure it's worth the effort, since eventually we want > cmd to use unicode intern

re: [1/3] cmd/tests: Use plain strings instead of char arrays for keywords

2011-06-24 Thread Dan Kegel
Frédéric Delanoy wrote: -static const char escaped_space[] = {'@','s','p','a','c','e','@','\0'}; +static const char *escaped_space = "@space@"; I'm not sure it's worth the effort, since eventually we want cmd to use unicode internally, at which point we'll have to go back to using arrays.

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Dylan Smith
On Fri, Jun 24, 2011 at 11:04 AM, Dylan Smith wrote: > So how about the revised patch that uses memset to set all the bits to 1. Oops, forgot to diff against origin. Attached patch against origin. diff --git a/dlls/d3dx9_36/tests/mesh.c b/dlls/d3dx9_36/tests/mesh.c index a07cc9d..8a87da3 100644 -

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Dylan Smith
On Fri, Jun 24, 2011 at 10:19 AM, Stefan Dösinger wrote: > On Friday 24 June 2011 16:01:21 Dylan Smith wrote: >> On Fri, Jun 24, 2011 at 9:31 AM, Michael Stefaniuc > wrote: >> > this commit breaks compilation on my old RHEL5 box: >> > dlls/d3dx9_36/tests/mesh.c:4813: error: ‘FP_NAN’ undeclared (f

re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Dan Kegel
Dylan wrote: -exp_weights[1] = FP_NAN; +exp_weights[1] = 0.0f / 0.0f; It's a bit strange to see 0 being replaced with infinity. What is your intent in that line? FP_NAN probably isn't what you think it is. On Fri, Jun 24, 2011 at 9:44 AM, Stefan Dösinger wrote: > I'd app

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Michael Stefaniuc
Thanks Dylan, Dylan Smith wrote: > On Fri, Jun 24, 2011 at 9:31 AM, Michael Stefaniuc > wrote: >> this commit breaks compilation on my old RHEL5 box: >> dlls/d3dx9_36/tests/mesh.c:4813: error: ‘FP_NAN’ undeclared (first use >> in this function) > > Does the attached patch fix the problem. It u

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Stefan Dösinger
On Friday 24 June 2011 16:01:21 Dylan Smith wrote: > On Fri, Jun 24, 2011 at 9:31 AM, Michael Stefaniuc wrote: > > this commit breaks compilation on my old RHEL5 box: > > dlls/d3dx9_36/tests/mesh.c:4813: error: ‘FP_NAN’ undeclared (first use > > in this function) > > Does the attached patch fix

Re: How to do single-step debugging while testing?

2011-06-24 Thread Michael Mc Donnell
On Fri, Jun 24, 2011 at 3:55 PM, Henri Verbeet wrote: > On 24 June 2011 15:24, Michael Mc Donnell wrote: >> I can set a break point at test_convert_point_reps_to_adjacency (my >> new test) and it stops there. I can also set a break point for >> ID3DXMeshImpl_ConvertPointRepsToAdjacency but it jus

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Dylan Smith
On Fri, Jun 24, 2011 at 9:31 AM, Michael Stefaniuc wrote: > this commit breaks compilation on my old RHEL5 box: > dlls/d3dx9_36/tests/mesh.c:4813: error: ‘FP_NAN’ undeclared (first use > in this function) Does the attached patch fix the problem. It uses 0.0f / 0.0f like in wined3d_private.h. On

Re: How to do single-step debugging while testing?

2011-06-24 Thread Henri Verbeet
On 24 June 2011 15:24, Michael Mc Donnell wrote: > I can set a break point at test_convert_point_reps_to_adjacency (my > new test) and it stops there. I can also set a break point for > ID3DXMeshImpl_ConvertPointRepsToAdjacency but it just goes past it. > > Here are the commands I used: > b test_c

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Stefan Dösinger
On Friday 24 June 2011 15:38:41 Alex Bradbury wrote: > On 24 June 2011 14:31, Michael Stefaniuc wrote: > >> Diff: > >> http://source.winehq.org/git/wine.git/?a=commitdiff;h=01ff07e2e1d2e7757 > >> 5ddbd88a705ef12ea6f9073 > > > > this commit breaks compilation on my old RHEL5 box: > > dlls/d3dx9_

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Alex Bradbury
On 24 June 2011 14:31, Michael Stefaniuc wrote: >> Diff:   >> http://source.winehq.org/git/wine.git/?a=commitdiff;h=01ff07e2e1d2e77575ddbd88a705ef12ea6f9073 > this commit breaks compilation on my old RHEL5 box: > dlls/d3dx9_36/tests/mesh.c:4813: error: ‘FP_NAN’ undeclared (first use > in this fun

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Michael Stefaniuc
Hello Dylan, Alexandre Julliard wrote: > Module: wine > Branch: master > Commit: 01ff07e2e1d2e77575ddbd88a705ef12ea6f9073 > URL: > http://source.winehq.org/git/wine.git/?a=commit;h=01ff07e2e1d2e77575ddbd88a705ef12ea6f9073 > > Author: Dylan Smith > Date: Wed Jun 22 14:24:41 2011 -0400 > >

Re: How to do single-step debugging while testing?

2011-06-24 Thread Michael Mc Donnell
On Fri, Jun 24, 2011 at 2:56 PM, Stefan Dösinger wrote: > On Friday 24 June 2011 14:44:10 Michael Mc Donnell wrote: >> Now I want to connect my graphical debugger. I enter "target remote >> localhost:57380" in ddd's command line and it connects. But how do I >> attach the source code and so on (I'

Re: How to do single-step debugging while testing?

2011-06-24 Thread Stefan Dösinger
On Friday 24 June 2011 14:44:10 Michael Mc Donnell wrote: > Now I want to connect my graphical debugger. I enter "target remote > localhost:57380" in ddd's command line and it connects. But how do I > attach the source code and so on (I'm use to debugging in Eclipse and > VS)? I'm not sure about th

Re: How to do single-step debugging while testing?

2011-06-24 Thread Michael Mc Donnell
On Fri, Jun 24, 2011 at 1:30 PM, Stefan Dösinger wrote: > On Friday 24 June 2011 11:53:22 Michael Mc Donnell wrote: >> $ ../../../tools/runtest name_of_test >> >> Is there a way to run the test in a debugger, so that I can single >> step through the functions that the test calls? > ../../../wine w

Re: How to do single-step debugging while testing?

2011-06-24 Thread Stefan Dösinger
On Friday 24 June 2011 11:53:22 Michael Mc Donnell wrote: > $ ../../../tools/runtest name_of_test > > Is there a way to run the test in a debugger, so that I can single > step through the functions that the test calls? ../../../wine winedbg foo_test.exe.so should work. signature.asc Description:

How to do single-step debugging while testing?

2011-06-24 Thread Michael Mc Donnell
Hi I'm trying to figure out how to single step through the code. I've looked at the winedbg and gdb information on winehq, but still can't figure out what to do. I normally run tests by issuing: $ ../../../tools/runtest name_of_test Is there a way to run the test in a debugger, so that I can sin

Re: GSoC-2011: Implement Missing Mesh Functions in Wine’s D3DX9

2011-06-24 Thread Michael Mc Donnell
On Fri, Jun 24, 2011 at 6:12 AM, Dylan Smith wrote: > On Thu, Jun 23, 2011 at 8:18 AM, Michael Mc Donnell > wrote: >> I've change the test a bit. I split up the complex example (mesh6) >> into two simpler examples. I also got inspired by your ASCII >> illustrations and have added my own in the co

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.