Upcoming WWN

2009-12-13 Thread Zachary Goldberg
Greetings Folks, As is the usual excuse "real life" has gotten in the way of producing quality and timely World Wine News issues. Dan Kegel recently had the idea of putting together a wiki page where the community as a whole can contribute to the next issue. I concurred and Dan put together the

New winetricks 20091213: ie6 and gecko fixed; new verbs vcrun6sp6, python-comtypes, richtx32; less restrictive art2kmin, clearer license text.

2009-12-13 Thread Dan Kegel
Austin and Andrew have been hard at work keeping winetricks working smoothly. In particular, the ie6 and gecko verbs should work again. Thanks guys! Changes since 20091125: Austin English: Workaround wine bug for IE6 Update shockwave sha1sum Add python-comtypes verb Explain windows licensing a bi

Re: weird and funky things happen when viewing guimark in ie6 in wine...

2009-12-13 Thread Austin English
On Sun, Dec 13, 2009 at 9:37 PM, Dan Kegel wrote: > Austin has a workaround for the problem that makes ie6 > exit immediately ( http://code.google.com/p/winezeug/issues/detail?id=78 ). > While testing it on guimark, >  wine ~.wine/drive_c/Program\ Files/Internet\ Explorer/IEXPLORE.EXE > http://www

weird and funky things happen when viewing guimark in ie6 in wine...

2009-12-13 Thread Dan Kegel
Austin has a workaround for the problem that makes ie6 exit immediately ( http://code.google.com/p/winezeug/issues/detail?id=78 ). While testing it on guimark, wine ~.wine/drive_c/Program\ Files/Internet\ Explorer/IEXPLORE.EXE http://www.craftymind.com/factory/guimark/GUIMark_HTML4.html I noticed

Re: (resend)shlwapi: implement SHPropertyBag_ReadLONG

2009-12-13 Thread Jacek Caban
Hi Aric, On 12/11/09 10:44 PM, Aric Stewart wrote: --- dlls/shlwapi/ordinal.c| 25 + dlls/shlwapi/shlwapi.spec |2 +- 2 files changed, 26 insertions(+), 1 deletions(-) +hr = IPropertyBag_Read(ppb, pszPropName,&var, NULL); +if (SUCCEEDED(hr)) +

Re: mshtml: Implement IHTMLImgElement get_Name

2009-12-13 Thread Jacek Caban
Hi Alistair, On 12/13/09 12:11 PM, Alistair Leslie-Hughes wrote: Hi, Changelog: mshtml: Implement IHTMLImgElement get_Name +nsres = nsIDOMHTMLImageElement_GetName(This->nsimg,&src_str); +if(NS_FAILED(nsres)) { +ERR("GetName failed: %08x\n", nsres); +return E_FAIL;

Re: [3/6]user32/tests: Test for SwitchDesktop API

2009-12-13 Thread James McKenzie
shanmukha sainath addepalli wrote: > Hi, > >The test for SwitchDesktop has not submitted earlier. This test > performs switching between two desktops using SwitchDesktop API. > Will this test and the other test compile into winetest_latest.exe and will this test give the results you expe

Re: [1/6]user32:SwitchDesktop API Implementation (try 2)

2009-12-13 Thread Vitaliy Margolen
shanmukha sainath addepalli wrote: > Hi, > > These are the series of patches for the Implementation of > SwitchDesktop and OpenInputDesktop API in user32.dll. SwitchDesktop > API is useful for switching between two desktops. Multi desktop > applications use this API functionality to switch b

Re: Building and packaging Wine Gecko

2009-12-13 Thread Ove Kaaven
Scott Ritchie skrev: > Ove Kaaven wrote: >> Ben Klein skrev: >>> Have you looked at my wine-gecko-1.0.0 package at the lamaresh.net >>> repository? It's just the pre-packaged cab file stored in >>> /usr/share/wine/gecko. >> That's the reason I'm not looking at it. > > Would such a package be ok fo

Re: Interfacing with AppDB database

2009-12-13 Thread Chris Morgan
Hello. You'll probably want to check out the appdb source code from git and see where to add php pages that export data in xml/json or your favorite data interface format. Then you and others can query the appdb via a reasonably defined api. We've had a few other questions about this issue so you

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Paul Vriens
On 12/13/2009 01:46 PM, Nikolay Sivov wrote: Could you suggest a best way to generate dll on runtime, maybe it's possible to place in into resourse? Any examples are welcome. dlls/kernel32/tests/file.c has create_fake_dll() and dlls/kernel32/tests/loader.c has test_Loader(), maybe that's of us

Re: Interfacing with AppDB database

2009-12-13 Thread Ben Klein
2009/12/13 Sean Hodges : > Hey all, > > I'm hoping to write an application that interfaces with the AppDB > database. Can anyone point me in the direction of who I can contact > over this? There appears to be no Web service or obvious way to query > AppDB beyond navigating the site itself. Interfa

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Roderick Colenbrander
On Sun, Dec 13, 2009 at 1:46 PM, Nikolay Sivov wrote: > On 12/13/2009 15:15, Roderick Colenbrander wrote: The main test which AJ suggested would be to 'force' native user32 to call RegisterClassNameW. There would be a dummy dll containing a RegisterClassNameW to which lets say

Interfacing with AppDB database

2009-12-13 Thread Sean Hodges
Hey all, I'm hoping to write an application that interfaces with the AppDB database. Can anyone point me in the direction of who I can contact over this? There appears to be no Web service or obvious way to query AppDB beyond navigating the site itself. Could you CC me in any replies as well, as

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Nikolay Sivov
On 12/13/2009 15:15, Roderick Colenbrander wrote: The main test which AJ suggested would be to 'force' native user32 to call RegisterClassNameW. There would be a dummy dll containing a RegisterClassNameW to which lets say the Button control would be redirected using a manifest. If I got

Re: mshtml: Implement IHTMLImgElement get_Name

2009-12-13 Thread Paul Vriens
On 12/13/2009 12:11 PM, Alistair Leslie-Hughes wrote: +ok_(__FILE__,line) (!lstrcmpW(sNameImage, tmp), "expected '%s' got '%s'\n", wine_dbgstr_w(sNameImage), wine_dbgstr_w(tmp)); Hi Alistair, Could you use strcmp_wa instead of lstrcmpW as that function is not present on Win9x/WinMe? --

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Roderick Colenbrander
>> The main test which AJ suggested would be to 'force' native user32 to >> call RegisterClassNameW. There would be a dummy dll containing a >> RegisterClassNameW to which lets say the Button control would be >> redirected using a manifest. > > If I got it right you're talking about a dummy dll wit

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Nikolay Sivov
On 12/13/2009 14:27, Roderick Colenbrander wrote: Correct the current theming code is broken like hell and needs to be rewritten. So as I thought. It is possible to write some tests but it will mostly be tests that won't make it into Wine itself. The easy test is just to test whether a cont

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Roderick Colenbrander
On Sun, Dec 13, 2009 at 11:48 AM, Nikolay Sivov wrote: > On 12/13/2009 13:08, Roderick Colenbrander wrote: >> >> On Sun, Dec 13, 2009 at 10:40 AM, Nikolay Sivov >>  wrote: >> >>> >>> Hi. >>> >>> Yesterday I looked at XP introduced messages for Edit controls >>> (EM_SETCUEBANNER/EM_GETCUEBANNER). >

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Nikolay Sivov
On 12/13/2009 13:08, Roderick Colenbrander wrote: On Sun, Dec 13, 2009 at 10:40 AM, Nikolay Sivov wrote: Hi. Yesterday I looked at XP introduced messages for Edit controls (EM_SETCUEBANNER/EM_GETCUEBANNER). This definitely doesn't work without v6 module loaded. Does someone have any idea

Re: Edit control messages through Comctl32 v6 module

2009-12-13 Thread Roderick Colenbrander
On Sun, Dec 13, 2009 at 10:40 AM, Nikolay Sivov wrote: > Hi. > > Yesterday I looked at XP introduced messages for Edit controls > (EM_SETCUEBANNER/EM_GETCUEBANNER). > This definitely doesn't work without v6 module loaded. > > Does someone have any idea how this supposed to work? Any comments are >

Edit control messages through Comctl32 v6 module

2009-12-13 Thread Nikolay Sivov
Hi. Yesterday I looked at XP introduced messages for Edit controls (EM_SETCUEBANNER/EM_GETCUEBANNER). This definitely doesn't work without v6 module loaded. Does someone have any idea how this supposed to work? Any comments are welcome as usual. P.S. Yes, I know that comctl32 does subclass