Re: Some notes from wineconf about the 1.4 release -- are we on track?

2011-07-10 Thread Louis Lenders
Scott Ritchie scott at open-vote.org writes: According to Alexandre... 1.4 will be out sometime in 2011 . . . Plus, of course, the general goal of making more applications work :) It seems like we're making serious progress. Have any of these stalled or become less important? Has

Re: kernel32/tests: remove a few CloseHandle calls on a HMODULE that don't make any sense

2011-07-03 Thread Louis Lenders
Marvin testbot at testbot.winehq.org writes: Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=12163 Your paranoid android. === WNT4WSSP6 (32 bit module) === module.c:356: Test failed: Expected ERROR_FILE_NOT_FOUND, got 1006 Hi, is there anyone who can tell me

msvcrt: Add tests to show that utime() can take a NULL-pointer for the utimbuf structure field

2011-05-03 Thread Louis Lenders
See http://www.winehq.org/pipermail/wine-patches/2011-April/101371.html Anything i could do to improve to get it in?

ntdll/tests: add tests for NtQueryVolumeInformationFile with FileFsVolumeInformation class

2010-11-24 Thread Louis Lenders
You should take that info from the volume (as it's done now in GetVolumeInformation) instead of hard-coded invalid values. I guess you're right, I wasn't aware of the fact that GetVolumeInformation already does such a job. I'm guessing some of that kernel32 functionality will need to be

Re: dogfood report: Safari runs youtube, firefox doesn't

2010-09-09 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: So I wanted to quickly try youtube in wine to verify sound was working. I think I used to use Firefox for this, so I did sh winetricks firefox flash This is a regression, this used to work a couple of months/ 1 year (?) ago, but it hangs. If someone

Re:kernel32: Add tests for SetHandleCount + make tests pass for winversions WINNT

2010-09-03 Thread Louis Lenders
It's pretty unlikely that count would be larger than 0x. I agree, but i thought we should mimic Windows-behaviour, and the tests showed that such large values are at least allowed. If this value is too large could you suggest another one? Also I don't think we need a version check.

kernel32: Add tests for SetHandleCount + make tests pass for winversions WINNT

2010-09-03 Thread Louis Lenders
Hi Juan, Since we don't have the same limitation in Wine, applications can call it or not, but it won't have any effect. Hence maintaining a version-dependent external behavior, while not behaving differently internally, doesn't make sense to me. Ok, thanks for the info, then i'll just let it

wine.inf: added .NET InstallRoot key

2010-08-24 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: What is our intent with adding all these registry keys? It seems as if they are helpful for installing mono, but might get in the way of installing MS .net. If that's the intent, do y'all want me to make the dotnet20 winetricks verb remove any registry

[1\4]wined3d: Extend IWineD3D_GetAdapterDisplayMode with an extra paramater to pass back some extra adapter info.

2010-07-22 Thread Louis Lenders
Hi Henri I mean that I don't think the rotation argument to GetAdapterDisplayMode() should be allowed to be NULL. I tested IDirect3D9Ex::GetAdapterDisplayModeEx and that allows pRotation to be NULL, and still happily retrieves all other (D3DDISPLAYMODEEX) info. So it's seems logical

[1\4]wined3d: Extend IWineD3D_GetAdapterDisplayMode with an extra paramater to pass back some extra adapter info.

2010-07-22 Thread Louis Lenders
Hi Henri I mean that I don't think the rotation argument to GetAdapterDisplayMode() should be allowed to be NULL. I tested IDirect3D9Ex::GetAdapterDisplayModeEx and that allows pRotation to be NULL, hmm, I remembered to have tested this, but to be sure I tested again a few minutes ago, and

[1\4]wined3d: Extend IWineD3D_GetAdapterDisplayMode with an extra paramater to pass back some extra adapter info.

2010-07-22 Thread Louis Lenders
ok, now i really need a break, the test i wrote 10 minutes ago had a mistake, IDirect3D9Ex::GetAdapterDisplayModeEx _does_ allow D3DDISPLAYROTATION pointer to be NULL. I'll just send the test to wine-patches. Again sorry for the noise

[1\4]wined3d: Extend IWineD3D_GetAdapterDisplayMode with an extra paramater to pass back some extra adapter info. Henri Verbeet hverbeet at gmail.com

2010-07-21 Thread Louis Lenders
Hi, @Chris: thanks for the remarks, i'll adjust patch [3\4] accordingly @Henry also thanks, i made a new patch here: http://pastebin.com/y5Kv52h0 would that be ok? I also think the wined3d call should simply retrieve all info, d3d9ex can discard it again if it feels like it. I don't exactly

Re: d3d9: add a few tests for GetAdapterDisplayModeEx

2010-07-07 Thread Louis Lenders
On 7 July 2010 23:39, Louis Lenders xerox_xerox2000 at yahoo.co.uk wrote: +todo_wine ok(mode_ex.ScanLineOrdering == D3DSCANLINEORDERING_PROGRESSIVE, ScanLineOrdering is %d instead of %d\n, mode_ex.ScanLineOrdering, D3DSCANLINEORDERING_PROGRESSIVE); +todo_wine ok(rotation

Re: make quot;bisectedquot; a keyword in bugzilla?

2010-05-22 Thread Louis Lenders
Nikolay Sivov nsivov at codeweavers.com writes: I believe developer's attention doesn't depend on bug state (confirmed/uncofirmed) at all. I'm not sure about that, my experience is that some developers do care about regressions and some don't (actually i think that they missed the bug

Re: Mono integration

2010-04-01 Thread Louis Lenders
The compatibility information basically indicates that Mono can substitute for .NET below version 3.0. 3.0 and higher still needs Microsoft's implementation. How would you handle hybridizing Mono with Microsoft's framework? You would need different wine prefixes if you want to use

Re: New winetricks 20091125: new verbs ie7, alsa, fbo, pbuffer, ...

2009-11-27 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: Pie's in the oven, time for another winetricks release. Could it be possible to fix mdac as well? Because of wine now having a more or less stubbed oledb32.dll, apps that need mdac don't run properly anymore. Simple solution is to set oledb32 to native,

mapistub: add stubbed dll mapistub.dll

2009-11-24 Thread Louis Lenders
I guess we can forward those functions to mapi32 later on. While running the app, no functions were called at all, it was even enough to copy a random dll into system32 , and call it mapistub.dll. That was enough to get the app going

Re: kernel32/tests: add more tests for Formatmessage{A,W} (try 2)

2009-10-30 Thread Louis Lenders
Hi Louis, These new tests introduce some test failures on several platforms: http://test.winehq.org/data/tests/kernel32:format_msg.html On Win9x/WinMe it seems like just another last error. There seems to be an issue with a particular test when run on a Windows box with no English locale

kernel32: add more tests for FormatMessage{A,W}

2009-10-28 Thread Louis Lenders
A couple of suggestions: 1. There is no point in testing last error if an API didn't fail Couldn't it be that the API sets ERROR_SUCCES if it doesn't fail? 2. It would be helpful to simultaneously test return values and last error for FindResource, which should have similar behaviour (and the

kernel32: add more tests for FormatMessage{A,W}

2009-10-28 Thread Louis Lenders
FormatMessage uses the same backend to find the requested resource as FindResource does, so I'd guess that they both fail in the same way when a resource id or a language does not exist in the module. Parsing an actual resource data is not necessary. ok, but isn't that test already in

kernel32: add more tests for FormatMessage{A,W}

2009-10-28 Thread Louis Lenders
FormatMessage uses the same backend to find the requested resource as FindResource does, so I'd guess that they both fail in the same way when a resource id or a language does not exist in the module. I still fail to see how I can call FindResource for a missing message-id. In the end they

test {IDirect3DTexture8, IDirect3DSurface8}::UnlockRect for rectangles that are not locked

2009-10-15 Thread Louis Lenders
Stefan Dösinger stefan at codeweavers.com writes: Do I read this correctly that a double unlockrect call on a surface fails, while a double unlockrect call on a texture succeeds? Yes Here are some more test suggestions: - Create a texture, retrieve its surface, and call LockRect/

Re: oleaut - SysAllocString/SysFreeString

2009-10-02 Thread Louis Lenders
Markus Stockhausen markus.stockhausen at collogia.de writes: Hi, maybe this topic has discussed before but I did not find any threads in the devel mailing list for the last months. Not sure, but maybe you could find some interesting related stuff in this

shdocvw: would it be allright to pretend succes in IWebBrowser2::Stop?

2009-06-29 Thread Louis. Lenders
Hi, i try run an app that bails out because WebBrowser_Stop returns E_NOTIMPL. Just like another app i already filed a bug for (http://bugs.winehq.org/show_bug.cgi?id=9895) it expects ERROR_SUCCESS. According to MSDN this function  Cancels a pending navigation or download, and stops dynamic

Re: Trying buildbot on wine; foiled by distutils expecting mscoree to be resident?

2009-05-01 Thread Louis Lenders
so I tried doing wine pywin32-212.win32-py2.6.exe first. This fails immediately as described in http://bugs.winehq.org/show_bug.cgi?id=13844 It seems to terminate because it tries to get a handle to the loaded copy of mscoree.dll and fails (because there isn't one). The installer

Re: Fixing AppDB once and for all

2009-02-03 Thread Louis Lenders
Zachary Goldberg zgold at bluesata.com writes: All, So it seems to be almost every other day now when somebody mentions how broken the appdb rating system is. This broken-ness has had several high level discussions on Wine-Devel. There have also been many, many proposed solutions to

Re: Running a simple .Net 3.0 application.

2009-01-15 Thread Louis Lenders
Are you sure that wine's d3d9 is available? (e.g. missing opengl libs on your linux system?) the GdiEntry13 stub sounds a bit like it tried to use native d3d9.dll, which doesn't work on Wine(and most likely never will) Yes i'm sure, as the biggest problem that prevented the app from running was

Running a simple .Net 3.0 application.

2009-01-14 Thread Louis Lenders
I saw some good progress is being made on getting the .net 3.0 installer fixed in wine. Nice. As it will take yet quite some time until the installer is fixed, i wondered if wine is in good shape to run .net 3.0 apps, once the installer is finished. Today I saw someone mentioning a program

Re: Implementing dxdiag as student project?

2008-12-28 Thread Louis Lenders
Chris Robinson chris.kcat at gmail.com writes: I think such a thing could still be useful. It'll help figure out what kind of info apps are getting from a given system, and help determine if problems are app-specific or more general system/wine-related. It can also serve as a basic

Re: shell32: FOF_MULTIDESTFILES must be set when copying files into directory

2008-10-18 Thread Louis. Lenders
Thank you for your answer. I agree, that before sending a patch I should write a test first. But the problem is that even a tests are ignored without any explanation. Maybe my tests aren't good, but why anybody just tell what's wrong. Seems to be common habit on this list. I hope you're not

Re: mapi32: initialize session pointer to zero in MAPILogonEx (2nd resend)

2008-10-08 Thread Louis. Lenders
diff --git a/dlls/mapi32/mapi32_main.c b/dlls/mapi32/mapi32_main.c index 936d435..5aace9a 100644 --- a/dlls/mapi32/mapi32_main.c +++ b/dlls/mapi32/mapi32_main.c @@ -109,6 +109,7 @@ HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam, LPWSTR profile, { FIXME((0x%08lx %s %p 0x%08x %p) Stub\n,

Re: mapi32: initialize session pointer to zero in MAPILogonEx (2nd resend)

2008-10-06 Thread Louis. Lenders
- Original Message From: Juan Lang [EMAIL PROTECTED] To: Louis Lenders [EMAIL PROTECTED] Cc: wine-devel@winehq.org Sent: Monday, 6 October, 2008 13:36:52 Subject: Re: mapi32: initialize session pointer to zero in MAPILogonEx (2nd resend) diff --git a/dlls/mapi32/mapi32_main.c b

Re: howto fix bug 13462

2008-10-02 Thread Louis Lenders
Rob Shearman robertshearman at gmail.com writes: Thanks very much for your comments Rob, I've updated the patch here: http://bugs.winehq.org/attachment.cgi?id=16397 Hopefully correct now? But now got another problem with the test, i changed it a bit like here:

Re: howto fix bug 13462

2008-09-29 Thread Louis. Lenders
Rob Shearman robertshearman at gmail.com writes: Hi Rob, i think i got the test ready now, i'll send it when the defenitions are in place in ctxtcall.idl. Now still strugling how to fix the bug. I fixed up the patch below, also by looking how things are done in similar places in wine-code.

Re: howto fix bug 13462

2008-09-28 Thread Louis. Lenders
Rob Shearman robertshearman at gmail.com writes: 2008/9/15 Louis Lenders xerox_xerox2000 at yahoo.co.uk: Rob Shearman robertshearman at gmail.com writes: I suggest you write a test case that replicates what the application does and either send it to wine-patches with appropriate

Re: howto fix bug 13462

2008-09-28 Thread Louis Lenders
+//#include ctxtcall.h Please resend the patch adding the IDL file for this generated file and get it in before sending this patch adding the tests. Hi Rob, thanks very much for the comments. I'll do the above , but i have problems when I uncomment the above include, i get:

Re: msi: add stub for MsiDetermineApplicablePatchesW

2008-09-25 Thread Louis. Lenders
- Original Message From: James Hawkins [EMAIL PROTECTED] The vast majority of this file does not put spaces around parenthesis, so can you resend with that fixed? well, the last functions from that file do put the spaces around them, but if you prefer otherwise, i'll resend it

Re: wine.inf.in: create default key App Paths (and key for IEXPLORE)

2008-09-23 Thread Louis. Lenders
- Original Message From: Alexandre Julliard [EMAIL PROTECTED] Louis. Lenders [EMAIL PROTECTED] writes: Hi, the key HKLM//Software\\Microsoft\\Windows\\CurrentVersion\\App Paths is needed by LexWare installer (bug http://bugs.winehq.org/show_bug.cgi?id=15347) This patch creates

Re: howto fix bug 13462

2008-09-18 Thread Louis Lenders
Rob Shearman robertshearman at gmail.com writes: That's not acceptable as that change will cause applications that do use the returned interface to either crash on a NULL pointer (if you set *ppv to NULL and return S_OK) or stack corruption (if you return a pointer to the wrong

Re: user32: fix error setting in FindWindow (try 2)

2008-08-22 Thread Louis. Lenders
- Original Message From: Alexandre Julliard [EMAIL PROTECTED] To: Louis. Lenders [EMAIL PROTECTED] Cc: wine-devel@winehq.org Sent: Friday, 22 August, 2008 4:54:49 AM Subject: Re: user32: fix error setting in FindWindow (try 2) Louis. Lenders [EMAIL PROTECTED] writes: diff --git

patches

2008-08-21 Thread Louis. Lenders
Hi, apparently none of my patches is making it into git, nor did i recieve any response from Alexandre about what's wrong with them. I guess i'm kind of blacklisted because of my dxdiag patch from a few months ago, where i took some code from a directX tutorial ( i thought tutorials were free

Re:activeds: add stub for ADsGetLastError

2008-08-21 Thread Louis. Lenders
Thanks for reviewing the patch James @@ -6,7 +6,7 @@ 8 stub ADsBuildVarArrayInt 9 stdcall ADsOpenObject(wstr wstr wstr long ptr ptr) 12 stub ADsSetLastError -13 stub ADsGetLastError +13 stdcall ADsGetLastError(ptr wstr long wstr long) Both of those wstr parameters are out pointers so they

Re:shobjidl.idl: add Taskbarlist interface defenitions

2008-08-21 Thread Louis. Lenders
The I'll send the rest later is a warning light. You should further develop this and send it all later so we know this is actually going somewhere. The whole patch, that lets Governor of Poker start i have attached to the bug http://bugs.winehq.org/attachment.cgi?id=15297 a few weeks ago. As i

Re:kernel32: Tiny improvement to the GetVolumePathNameW stub (try 4)

2008-08-21 Thread Louis. Lenders
You've handled *a* successful case, but what about the error case? As i said already in the mail with the patch, it might be *a* case, but this is the case that most apps will follow as far as i can see. Futhermore, when apps are really crashing into the other cases, it can be added later

Re: kernel32: Tiny improvement to the GetVolumePathNameW stub (try 4)

2008-08-21 Thread Louis. Lenders
- Original Message From: James Hawkins [EMAIL PROTECTED] To: Louis. Lenders [EMAIL PROTECTED] Cc: wine-devel@winehq.org Sent: Thursday, 21 August, 2008 3:55:07 PM Subject: Re: kernel32: Tiny improvement to the GetVolumePathNameW stub (try 4) That whole paragraphs reads hack now

rsaenh: Test and correct the maximum allowable salt length

2008-08-02 Thread Louis. Lenders
Usually i don't feel the need to respond to messages on wine-devel, but now i do: What in the hell does this patch do? Why is it needed? What does it fix/implement? Doees this change affect any Bugzilla issues? Where is the Changelog? This is what I have been trying to get you to do. I

Re: programs: add rudimentary dxdiag

2008-07-08 Thread Louis Lenders
Detlef Riekenberg wine.dev at web.de writes: Louis, please do not give up and reopen the bug. You got already some comments, and I want to give some more Ideas. - You told, that you reuse the code for the cube from the internet. That is a no-go because of copyright and license

Re: programs: add rudimentary dxdiag

2008-07-03 Thread Louis Lenders
Here's what you said in your original patch: - code for spinning cube was partially based on spinning cube code scattered all over the internet -rest was ripped of winecfg - There' s a problem while minizing the d3d-window, but running it in wine-0.9.22 it all goes fine, so this must be a

Re: programs: add rudimentary dxdiag

2008-07-02 Thread Louis Lenders
Detlef Riekenberg wine.dev at web.de writes: Why not? - empty stub - the property-sheet - demo-window with an empty (in memory) Bitmap - the wine-logo as bitmap - spinning cube reorder, when needed Hi Detlef (and Juan) , thanks for the response. I sent in a simple stub (and two

Re: programs: add rudimentary dxdiag

2008-07-02 Thread Louis Lenders
Juan Lang juan.lang at gmail.com writes: Hi Louis, Apparently they were never received in the first place. At least, I don't see them on the wine-patches archive. Maybe you should resend? --Juan Hi Juan: http://www.winehq.org/pipermail/wine-patches/2008-June/056911.html

Re: programs: add rudimentary dxdiag

2008-07-02 Thread Louis Lenders
Juan Lang juan.lang at gmail.com writes: http://www.winehq.org/pipermail/wine-patches/2008-June/056911.html Ah. That's not enough to judge where your patches are going. I already explained, see http://bugs.winehq.org/attachment.cgi?id=14342 and

Made ENTER_GL() - LEAVE_GL() free X11 lock on exception inside opengl, code

2008-06-28 Thread Louis. Lenders
And as was shown, Wine correctly returns NULL when its called without a context, so there is something else making it crash. It may be a buggy driver. It may be memory corruption Wine is causing.. who knows. i don't think it's buggy driver, this happens as far as i know for various people,

opengl32: work around a crash in glGetString

2008-06-26 Thread Louis. Lenders
As I mentioned before this requires a test case. As i tried to explain , in a simple test glGetString just return null, it will not crash for me, like it does in the program. I remember from the gl log that the program didn't create a WGL context at all. It isn't allowed to make opengl calls

Wine + Fedora

2008-06-09 Thread Louis Lenders
Hi, just thought dropping a note here so you'd know: the troubles reported for wine+fedora 9, now also affect fedora 8. Last saturday i did a 'yum update', and after that about all wine-applications froze my computer. Only a hard reboot helped... Solved it by reverting back to kernel

AutoCad and wine

2008-06-08 Thread Louis Lenders
This seems to be a must have for many people. Would be nice if we could have this running in near futurfe. I found that you can download a few old trialversions from http://www.brothersoft.com/autocad-download-78215.html (this is autocad2006l on the right side you can see the downloadlinks for

Re: How to phrase Wine's success rate

2008-05-25 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: When making announcements about Wine 1.0, it's useful to include an objective measure of how well it works for the average app, one that correctly conveys both Wine's promise and its limitations. Our current appdb stats are: Platinum 1500 Gold

Re: What graphics cards do the d3d9 tests pass on?

2008-05-16 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: Anyone know how to get the d3d9 tests to pass? Are there a set of graphic cards that are known to work with them? Right now, nobody who's reported test results under wine is seeing them pass:

Re: Call for help with Wine 1.0 testing

2008-05-15 Thread Louis Lenders
Jeremy White jwhite at codeweavers.com writes: Hi Folks, One key goal for Wine 1.0 is that all of its conformance tests run successfully on nearly all systems. We would really like your help in figuring out how close we are to that goal. To that end, if you are comfortable with

Re: msvcrtd: add DllMain

2008-04-10 Thread Louis. Lenders
- Original Message From: Alexandre Julliard [EMAIL PROTECTED] To: Louis. Lenders [EMAIL PROTECTED] Cc: wine-devel@winehq.org Sent: Thursday, 10 April, 2008 5:15:56 AM Subject: Re: msvcrtd: add DllMain Louis. Lenders [EMAIL PROTECTED] writes: Hi, this is for bug http

Question about LoadImageW and gifs (affects all new Autodesk installers)

2008-04-04 Thread Louis. Lenders
Hi, does anyone know if LoadImageW is supposed to work with *.gif files? I'm asking because Autodesk installers seem to so something like LoadImageW(0,c:\\foo.gif,IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE) and then wine just crashes later on, as it tries to get the bitmapinfo header , and ends up

improve winetricks dotnet 1.1

2008-03-11 Thread Louis. Lenders
Hi, i wonder if it would be possible to improve winetricks dotnet 1.1, so that it's actually able to run .net-1.1 applications. Currently it only installs the framework, but due to bugs the apps don't run. Atm moment i use pretty worthless script below to get them running, but i'm sure one of

Re: Google Summer of Code

2008-03-07 Thread Louis Lenders
Luis C. Busquets Pérez luis.busquets at ilidium.com writes: Please find attached some projects that could be in this Summer of Code: 1. Finishing the implementation of d3dx9_36. Since we have already the forwarding d3dx9_xx there is just need for the this dll to be in our system. With

Re: Next big app(s) to try?

2008-02-22 Thread Louis Lenders
By the way, AutoCAD and 3ds max are very popular applications. It's easy to check how they are popular by using Google. For example, for AutoCAD alone you will get 43,800,000 results [1]. So there is a really a lot of people who depends on Autodesk products such as AutoCAD. So I

Re: GOM player

2008-01-18 Thread Louis Lenders
On 1/17/08, Dan Kegel dank at kegel.com wrote: http://www.guardian.co.uk/technology/2008/jan/17/linux.korea says everyone in Korea uses the GOM player... It installs ok, but blew up when I tried to load the Sony music stream from its playlist. ... http://www.gomplayer.com/

Re: kernel32:add ReadFileScatter

2007-12-03 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: Hey Louis, Focht is using a pseudonym, and I believe it's Wine policy to not accept patches without real names. His patches should be used as guides only, and should not be reposted to wine-patches, until such time as he decloaks. Well , sorry, i

Re: defining and revamping our bugzilla categories

2007-10-10 Thread Louis Lenders
James Hawkins truiken at gmail.com writes: Currently we have some categories that exactly fit to one dll and some categories that include multiple dlls that are related. Also there is overlap between those two. (And perhaps some that fit in neither.) E.g. there is wine-quartz (one

Re: Wine 1.0 bugs, release criteria

2007-10-07 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: Louis wrote: Ok, here one on my wish-list: All apps that currently fail on wine due to shdocvw/mshtml disfunctionality. Hmm. I looked at the 48 bugs in http://bugs.winehq.org/buglist.cgi?product=Winecomponent=wine-shdocvw briefly, and marked a few

Re: Wine 1.0 bugs, release criteria

2007-10-06 Thread Louis Lenders
Dan Kegel dank at kegel.com writes: At Wineconf 2007, I was appointed to be the guy who decides (with Alexandre's approval) what bugs are 1.0 bugs and what aren't. So I've started adjusting the Target Release fields on a few bugs in Bugzilla. Over the next month or so, I'd like Wine

Re: Wine 1.0 bugs, release criteria

2007-10-06 Thread Louis Lenders
Ok, here one on my wish-list: All apps that currently fail on wine due to shdocvw/mshtml disfunctionality. Almost all of these apps start fine using ies4linux. I did quite a lot of testing of demo's, and many of them fail because of this (in most cases you just end up with a white screen).

Re: wtsapi32: add stub for WTSRegisterSessionNotification

2007-09-24 Thread Louis. Lenders
Anything wrong with these simple stubs? http://www.winehq.org/pipermail/wine-patches/2007-September/043944.html and http://www.winehq.org/pipermail/wine-patches/2007-September/043945.html ? - Yahoo! Answers - Get better answers from someone who knows.

Re: About WritePrivateProfileString and file operations

2007-08-16 Thread Louis Lenders
Zhongli Xu zhongli.xu at gmail.com writes: Hi all,I run some tests about mixed using WritePrivateProfileString and stand file operationsCodes look like this:GetPrivateProfileString(keyname, value);fopen();fprintf(# comments); fclose();WritePrivateProfileString(keyname, newvalue);What I found

Fonts (+liberation again...)

2007-08-10 Thread Louis. Lenders
Hi , a few weeks ago posted something about if liberation fonts could be included in wine. There didn't seem to be one view of how to do that. Of course 'winetricks liberation' is great, but i'd like to see something that works out of the box on a fresh .wine. Attached is a patch, that

Re: request to change appdb message

2007-07-03 Thread Louis Lenders
I think the main problem is that there is a lack of maintainers and the ones that exist seem to be mainly inactive. Yeah, and it's quite a tedious task to submit test-results, new versions and new apps into appdb. Maybe we need a few more active ones. If they were active then there

Re: request to change appdb message

2007-06-29 Thread Louis Lenders
Chris Morgan chmorgan at gmail.com writes: How do you normally judge if the result is valid or not? What if the result says that everything works? Basically i'm only talking about garbage test results. If the app is gold/platinum there's of course no need to paste debug output It seems

request to change appdb message

2007-06-28 Thread Louis. Lenders
Hi, since a few weeks the following message is displayed when you try to submit test results into appdb: Please DO NOT include crash or Wine debug output. Instead report the crash as a bug in the Wine bugzilla at http://bugs.winehq.org. We ask that you use bugzilla because developers do not

Re: Liberation

2007-06-15 Thread Louis Lenders
Hans Leidekker hans at it.vu.nl writes: On Friday 15 June 2007 12:14:06 Michael Stefaniuc wrote: Why do you need to copy the fonts? Wine can use the system fonts. The Wine package would need to have only a dependency on the liberation font package. The liberation-fonts rpm is already

Liberation

2007-06-14 Thread Louis. Lenders
Hi, this is mainly a follow up to the thread here http://www.winehq.org/pipermail/wine-devel/2007-May/057092.html , to give it a new boost Question is, are there any plans to include Liberation fonts in wine? I gave it a good testing last two weeks, that is, i converted the fonts with

Re: GDI+ programs

2007-06-11 Thread Louis Lenders
Evan Stade estade at gmail.com writes: Hi, I want to make some real applications work with the built-in wine GDI+. Does anyone know of some programs that use GDI+ that would be good for guiding my development? thanks, Evan Stade Try Query bugs in bugzilla with keyword gdiplus:

Wine fails to start browser

2007-06-03 Thread Louis. Lenders
Hi, i noticed some kind of regression in current git, for example when i try to start http://fe.trymedia.com/dm/infogrames/30m_default/t_20em/FreddiKelp.exe , a download manager for the game. With current git i get this: Usage: winebrowser URL That's it, whereas in wine-0.9.34, it opens my

Re: Wine fails to start browser

2007-06-03 Thread Louis Lenders
Koshelev, Misha Vladislavo mk144210 at bcm.tmc.edu writes: If I have time, I may look into how hard it would be to add DDE for winebrowser (I don't think it should be too bad, but I'll have to check). Misha Cool! looking forward to that than ;)

Re:wine.inf: Create fake dll for iexplore.exe.

2007-05-31 Thread Louis. Lenders
wine.inf: Create fake dll for iexplore.exe. Vitaliy Margolen wine-patches at kievinfo.com Thu May 24 08:50:10 CDT 2007 Some older programs check if IE is installed looking for c:\Program Files\Internet Explorer\iexplore.exe --- tools/wine.inf |1 + 1 files changed, 1

Re: problems regression testing/compiling wine

2007-05-13 Thread Louis Lenders
E winegcc: gcc failed. make[2]: *** [winex11.drv.so] Error 2 make[2]: Leaving directory `/home/eric/wine/dlls/winex11.drv' make[1]: *** [winex11.drv] Error 2 make[1]: Leaving directory `/home/eric/wine/dlls' make: *** [dlls] Error 2

Re: problems regression testing/compiling wine

2007-05-13 Thread Louis Lenders
EA Durbin ead1234 at hotmail.com writes: No, that doesn't help, i've tried distclean, git clean -x, the usual make clean, and nothing works. Regression testing seems borked passed two bisects. From: Louis Lenders xerox_xerox2000 at yahoo.co.uk To: wine-devel at winehq.com Subject: Re

Internet explorer not detected

2007-05-11 Thread Louis Lenders
Hi, i tried help this dude on IRC channel getting an application to run called MegaSpoof. Even after creating fake registry key it kept complaining about missing Internet Explorer. After looking through the +relay log i found this: 000d:Call KERNEL32.CreateProcessW(,0034f428 Lc:\\Program

Re: msvcp60 and bug 7679

2007-04-26 Thread Louis Lenders
Eric Pouech eric.pouech at wanadoo.fr writes: Tom Spear a écrit : On 4/26/07, Tom Spear speeddymon at gmail.com wrote: http://bugs.winehq.org/show_bug.cgi?id=7679 - IMVU 3D Avatar Chat client crashes I gave the application a try, and looks like there's a problem with builtin

Re: wine.inf: update registry key

2007-04-20 Thread Louis. Lenders
Dmitry Timoshkov [EMAIL PROTECTED] wrote: Louis. Lenders wrote: Hi, this fixes bug #7953 - http://bugs.winehq.org/show_bug.cgi?id=7953 Vitaly said this one won't go as it might break another app, but i don't get that , as the key in windows looks quite the same, No it doesn't

Fedora packages, where are they?

2007-04-05 Thread Louis Lenders
Hi, the link on the wine-page to get the Fedora- wine packages points to nowhere. Could this be fixed? Furthermore, anyone know where i can get the wine-rpm for Fedora?

request to look into this bug

2007-03-30 Thread Louis. Lenders
Hi, while working through the test reports in the appdb, i saw users submitting crashes with applications , all similar to bug 7380, so i decided to take it here. The applications that crash are *WinMerge (newest version) *BookWorms Adventures + several other PopCap games ( i tested them)

Re: On bugs and docs

2007-03-20 Thread Louis Lenders
James Hawkins truiken at gmail.com writes: However, the components could use a major revamping and should be fairly trivial. However I think that one component for each dll might be a bit much.. Maybe narrow the dll's down to categories such as wine-common-controls, and wine-riched..

Re: WineCfg and DirectX options

2007-03-17 Thread Louis Lenders
Bryan Haskins kingofallhearts999 at gmail.com writes: Completely seconded, some nice UI love is the only thing we have under Transgaming right now, really. But a native Exec. UI is a python buggy UI. On 3/17/07, Michael Lothian mike at fireburn.co.uk wrote: HiHas anyone thought about

Re: AppDB performance issue

2007-02-14 Thread Louis Lenders
Bryan Haskins kingofallhearts999 at gmail.com writes: I was just replying, and reading now, no slow down at all. It loads a little slow running through all that text, but no where near the minutes everyone says it takes them, even on dialup. For your info, Appdb, is complete unusable for

Failing regression tests, how to solve?

2007-01-25 Thread Louis Lenders
Hi, regression testing back to for example wine-0.9.22 all fails for me with link errors: palette.o: In function `X11DRV_PALETTE_ToPhysical': /sda3/wine-git/dlls/winex11.drv/palette.c:828: undefined reference to `GDI_GetObjPtr' /sda3/wine-git/dlls/winex11.drv/palette.c:848: undefined reference to

Re: GreenVille font, is it still available? I have a question about it.

2007-01-11 Thread Louis. Lenders
: --- Louis. Lenders wrote: Hi, i got your email address from one of the Reactos developers. AFAIK you have been working on a Tahoma compatible font called Greenville. I was wondering if you still have it, and if you were willing to license this LGPL, so that it could be included in Wine

Re: appdb rating inflation

2007-01-03 Thread Louis Lenders
Frank Richter frank.richter at gmail.com writes: On 03.01.2007 04:00, Dan Kegel wrote: No manual editing of files, no winecfg settings, no native DLLs, no third-party install scripts, and no cracks are allowed for a Platinum rating. Well, if you look at the submissions in the appb ,

Re: Building a full win32 winetest.exe

2006-12-23 Thread Louis Lenders
Paul Millar paulm at astro.gla.ac.uk writes: Try posting the problems with the crypt32 and hlink tests: it could be you need to patch you MinGW compiler to support extra functions. HTH, Paul. I too had problems trying to do make crosstest in crypt32 a time ago, this is what i get (link

Re: fonts:(followup)

2006-12-23 Thread Louis Lenders
Steven Edwards winehacker at gmail.com writes: Talk to the ReactOS guys and ask them if they still have it. I don't remeber if I ever committed it to ReactOS svn but if its there it would have been in reactos/media/fonts. Email them or ask on IRC if they can get you in touch with the

Re: fonts:add

2006-12-11 Thread Louis Lenders
Greenville's face is substantially is different from Tahoma, the only thing which is similar to Tahoma is character widths, which makes Greenville a compatible replacement of Tahoma. Since I worked for a publishing company for 10 years, and I know how the font faces are .being created, I should

Re: Bug in MapAndLoad function

2006-11-17 Thread Louis Lenders
There's nothing wrong with bringing this up on wine-devel. Adam has taken the time to track down the possible bug culprit, and he's sharing it with the developers. If, on the other hand, he had just said, app xyz doesn't work, don't know why the the response would be correct. Not every

When will ie6 registry key be added?

2006-11-04 Thread Louis. Lenders
Hi, subject says it: When will ie6 registry key be added?People are filing bugs against wine, because installers fail, saying ie6 has to be installed. I guess in most cases, they will rush for ies4linux (which is btw a great script i think, but useless to use other apps then ie6) and end up with a

ntdll: Add a stub implementation for RtlDllShutdownInProgress

2006-11-03 Thread Louis. Lenders
a little test shows it returns some unknown status on my xp lap[top:0x7c927f00, so likely not STATUS_SUCCESS.diff --git a/dlls/ntdll/tests/rtl.c b/dlls/ntdll/tests/rtl.cindex 59871de..588e33e 100644--- a/dlls/ntdll/tests/rtl.c+++ b/dlls/ntdll/tests/rtl.c@@ -66,6 +66,7 @@ static RTL_HANDLE *

  1   2   >