bluetooth cpl support (Re: USB Device Support - Nokia PC Suite)

2011-02-19 Thread Hin-Tak Leung
--- On Fri, 18/2/11, Mike Yates wrote: > After rebooting, I did get a full > list of "fixme" lines:- > > mike@myvmubuntu:~$ wine .wine/drive_c/Program\ > Files/Nokia/Nokia\ PC\ > Suite\ 7/PCSuite.exe > err:module:import_dll Library irprops.cpl (which is needed > by > L"C:\\Program Files\\PC C

Re: new winetricks-alpha 20110219-alpha: added wineprefix selection screen

2011-02-19 Thread Dan Kegel
Roseanne wrote: >> winetricks-alpha version 20110219's gui now starts with a wineprefix >> selection dialog. ... >> When using the gui, games can only be installed into their own >> sandboxed prefix. > > You should make a separate wineprefix the default for Off

Re: USB Device Support - Nokia PC Suite

2011-02-19 Thread GOUJON Alexandre
On 02/18/2011 05:08 PM, Mike Yates wrote: After rebooting, I did get a full list of "fixme" lines:- mike@myvmubuntu:~$ wine .wine/drive_c/Program\ Files/Nokia/Nokia\ PC\ Suite\ 7/PCSuite.exe [snip] Mike, this is a developer's mailing list. With questions about how to use Wine please refer to

No longer possible for users to submit AppDB test reports for the current stable release

2011-02-19 Thread Rosanne DiMesio
With the release of 1.3.14, the current stable release has dropped off the list of versions for which users can submit AppDB test reports, though 1.0.0 and 1.0.1 remain on the list. Can someone please fix this? http://bugs.winehq.org/show_bug.cgi?id=24763 -- Rosanne DiMesio

Re: USB Device Support - Nokia PC Suite

2011-02-19 Thread Mike Yates
After rebooting, I did get a full list of "fixme" lines:- mike@myvmubuntu:~$ wine .wine/drive_c/Program\ Files/Nokia/Nokia\ PC\ Suite\ 7/PCSuite.exe fixme:userenv:GetUserProfileDirectoryW 0x100 (nil) 0x32f43c err:ole:CoInitializeEx Attempt to change threading model of this apartment from apartment

Re: new winetricks-alpha 20110219-alpha: added wineprefix selection screen

2011-02-19 Thread Rosanne DiMesio
On Fri, 18 Feb 2011 22:48:22 -0800 Dan Kegel wrote: > Another day, another winetricks-alpha. (Well, it *is* alpha.) > > winetricks-alpha version 20110219's gui now starts with a wineprefix > selection dialog. > If you just click OK, it uses the default wineprefix. > Wh

Re: System-wide WoW64 setup

2011-02-19 Thread Jerome Leclanche
Yep, that was the issue. --libdir=/usr/lib32 is needed for the 32bit install on ubuntu. Thanks a lot. This may be worth mentioning on the wiki. J. Leclanche On Sat, Feb 19, 2011 at 1:50 PM, Alexandre Julliard wrote: > Jerome Leclanche writes: > >> The guide doesn't mention a system-wide set

Re: comctl32: Fix read of uninitialized data in LISTVIEW_GetItemExtT when LVIF_TEXT is not set (Valgrind).

2011-02-19 Thread Nikolay Sivov
On 2/19/2011 16:49, Alexander Scott-Johns wrote: On 19 February 2011 11:42, Nikolay Sivov wrote: I think it's enough to add a mask check here: --- if (bResult&& lpLVItem->pszText != pszText) --- to keep a single call of GetItem. But isn't pszText = lpLVItem->pszText; undefined be

Re: System-wide WoW64 setup

2011-02-19 Thread Alexandre Julliard
Jerome Leclanche writes: > The guide doesn't mention a system-wide setup. Am I doing something wrong > here? Most likely you are not using the correct libdirs. If your distro doesn't use lib and lib64 for 32/64-bit respectively, you need to specify the libdirs in configure. -- Alexandre Julli

Re: comctl32: Fix read of uninitialized data in LISTVIEW_GetItemExtT when LVIF_TEXT is not set (Valgrind).

2011-02-19 Thread Alexander Scott-Johns
On 19 February 2011 11:42, Nikolay Sivov wrote: > I think it's enough to add a mask check here: > --- >    if (bResult && lpLVItem->pszText != pszText) > --- > > to keep a single call of GetItem. But isn't pszText = lpLVItem->pszText; undefined behaviour if lpLVItem->pszText is not initial

System-wide WoW64 setup

2011-02-19 Thread Jerome Leclanche
I've recently finished setting up WoW64 with the help of this guide [http://wiki.winehq.org/Wine64] and kevlarman on #winehackers. However, I'm running into a lot of trouble to install it system-wide. Git tree lives at ~/src/wine and my build dirs are ~/src/wine/build and ~/src/wine/build64. A f

Re: comctl32: Fix read of uninitialized data in LISTVIEW_GetItemExtT when LVIF_TEXT is not set (Valgrind).

2011-02-19 Thread Nikolay Sivov
On 2/19/2011 03:34, Alexander Scott-Johns wrote: I think it's enough to add a mask check here: --- if (bResult && lpLVItem->pszText != pszText) --- to keep a single call of GetItem.