Re: Outreach to windows ISVs

2005-12-12 Thread Brian Vincent
On 12/11/05, Dan Kegel [EMAIL PROTECTED] wrote: At the Desktop Architects Meeting at OSDL, one of the big topics was how to make life easier for ISVs that want to start supporting Linux. So I put together a little page We discussed something similar last year at WineConf about putting

Re: PATCH: handle redirect to https

2005-12-12 Thread Marcus Meissner
On Mon, Dec 12, 2005 at 01:58:37AM -0600, Robert Shearman wrote: Marcus Meissner wrote: Hi, Redirect from http to https currently segfaults our wininet implementation. Exposed by the Google Earth update check. Ciao, Marcus Changelog: When redirecting, do not forget to reinit

Re: Outreach to windows ISVs

2005-12-12 Thread Andreas Mohr
Hi, On Sun, Dec 11, 2005 at 10:33:00PM -0800, Dan Kegel wrote: At the Desktop Architects Meeting at OSDL, one of the big topics was how to make life easier for ISVs that want to start supporting Linux. So I put together a little page aimed at Windows ISVs who are interested in supporting

Re: Outreach to windows ISVs

2005-12-12 Thread Dan Kegel
On 12/12/05, Andreas Mohr [EMAIL PROTECTED] wrote: http://kegel.com/wine/isv/ Some important missing keywords/topics: porting, MFC, Visual Basic, Unix, win32, api, toolkit. Those omissions alone would account for a 50% internet search failure rate, I'm sure ;) OK, check it now! BTW,

Re: Outreach to windows ISVs

2005-12-12 Thread Andreas Mohr
Hi, On Mon, Dec 12, 2005 at 02:55:26AM -0800, Dan Kegel wrote: On 12/12/05, Andreas Mohr [EMAIL PROTECTED] wrote: http://kegel.com/wine/isv/ Some important missing keywords/topics: porting, MFC, Visual Basic, Unix, win32, api, toolkit. Those omissions alone would account for a 50%

invalid window width/height

2005-12-12 Thread Cihan Altinay
Hi, I tried to find some information on those messages like err:x11drv:X11DRV_CreateWindow invalid window width 0x10042 -215 What does native do when called with negative widths/height? I found it particularly interesting that Worms Armageddon creates static windows where the x/y coordinates and

BUG (3920) + sync between DIBs and X Server optimisation. (please help)

2005-12-12 Thread Marinescu-Ghetau Iulian
I came to the conclusion that the slowness in Heroes IV it has to do with sync'ing lage bitmaps between application DIBs and X Server(see the log: http://bugs.winehq.org/attachment.cgi?id=1470action=view ). Also, a complete description of the bug is here:

Re: PATCH: handle NULL XImage in GetBitmapBits

2005-12-12 Thread Alexandre Julliard
Marcus Meissner [EMAIL PROTECTED] writes: Hi, This fixes bug 4034. XGetImage() returns NULL since we can pass a 0 height value. (298 bytes vs 320 byte wide image). This shouldn't happen, the height should have been checked in GetBitmapBits already. There's something wrong here... --

Re: http headers reworking

2005-12-12 Thread Andreas Mohr
Hi, On Mon, Dec 12, 2005 at 10:30:48AM -0600, Aric Stewart wrote: All fixes for Picasa. [...yet again] I'm sure Google will deliver us a fully working Wine reimplementation of IE on a silver tablet in exchange for all that trouble with their almost always nicely non-cross-platform software,

Re: RESENT: sysparams: read/save minimized metrics from/to registry

2005-12-12 Thread Alexandre Julliard
Rein Klazes [EMAIL PROTECTED] writes: @@ -776,7 +781,7 @@ static inline BOOL get_bool_param( unsig } /* set a uint parameter that is mirrored in two different registry locations */ -static BOOL set_uint_param_mirrored( unsigned int idx, LPCWSTR regkey, LPCWSTR regkey_mirror, +static

Re: PATCH: handle redirect to https

2005-12-12 Thread Robert Shearman
Marcus Meissner wrote: On Mon, Dec 12, 2005 at 01:58:37AM -0600, Robert Shearman wrote: Marcus Meissner wrote: Hi, Redirect from http to https currently segfaults our wininet implementation. Exposed by the Google Earth update check. Ciao, Marcus Changelog: When

Re: crypt32: decode cleanups

2005-12-12 Thread Alexandre Julliard
Juan Lang [EMAIL PROTECTED] writes: ChangeLog: - implement a helper to decode sequences of like types - use helper functions wherever applicable when decoding - fix a few other small bugs This breaks the test: encode.c:790: Test failed: Expected OID Juan Lang, got NULL encode.c:790: Test

Re: BUG (3920) + sync between DIBs and X Server optimisation. (please help)

2005-12-12 Thread Robert Shearman
Marinescu-Ghetau Iulian wrote: I came to the conclusion that the slowness in Heroes IV it has to do with sync'ing lage bitmaps between application DIBs and X Server(see the log: http://bugs.winehq.org/attachment.cgi?id=1470action=view ). Also, a complete description of the bug is here:

gethostbyname(my_name) and IL2-Sturmovik

2005-12-12 Thread David Nolden
Hi everybody. Currently, my favorite Game is IL2-Sturmovik Forgotten Battles, especially it's online-mode. The Game itself is running nearly flawless and at good performance, but I encountered a network-problem which didn't allow the game to connect to any remote server, so I've analyzed and

Re: Alexandre Julliard : server: Added access rights mapping to synchronization objects.

2005-12-12 Thread Robert Shearman
Alexandre Julliard wrote: @@ -132,6 +133,15 @@ static int event_satisfied( struct objec return 0; /* Not abandoned */ } +static unsigned int event_map_access( struct object *obj, unsigned int access ) +{ +if (access GENERIC_READ)access |= STANDARD_RIGHTS_READ | SYNCHRONIZE |

Re: Alexandre Julliard : server: Added access rights mapping to synchronization objects.

2005-12-12 Thread Alexandre Julliard
Robert Shearman [EMAIL PROTECTED] writes: Why did you decide to rely on another function to map the access rights? It seems that none of the objects' mappings depend on any state in the object, so couldn't you have just put the access rights that GENERIC_READ, GENERIC_WRITE,

Re: gethostbyname(my_name) and IL2-Sturmovik

2005-12-12 Thread Christoph Frick
On Mon, Dec 12, 2005 at 04:44:23PM +0100, David Nolden wrote: But if it is desired that gethostbyname(own_name) preferrably returns the public IP-Adress, then this code should solve the problem, although maybe a bit more checking should be done which IP-Adress should be chosen as the public

Re: Alexandre Julliard : server: Added access rights mapping to synchronization objects.

2005-12-12 Thread Robert Shearman
Alexandre Julliard wrote: Robert Shearman [EMAIL PROTECTED] writes: Why did you decide to rely on another function to map the access rights? It seems that none of the objects' mappings depend on any state in the object, so couldn't you have just put the access rights that GENERIC_READ,

Re: Alexandre Julliard : server: Added access rights mapping to synchronization objects.

2005-12-12 Thread Alexandre Julliard
Robert Shearman [EMAIL PROTECTED] writes: How about adding a new structure that contains the ops structure and the data then to not mix them then? I don't see any reason to make the data structure more complex. The amount of code is really pretty much the same, putting it in a table won't

Re: [NDR] Implement NdrClientCall2 and NdrServerCall2

2005-12-12 Thread Robert Shearman
Detlef Riekenberg wrote: Am Donnerstag, den 01.12.2005, 00:39 -0600 schrieb Robert Shearman: [NDR] Implement NdrClientCall2 and NdrServerCall2 [NDR] Fix handle support for stubless objects [NDR] Fix Accessing Arguments in NdrClientCall2 Hi Rob. I tested your Patches with

Re: WIDL: Zero Initialize Server Parameters

2005-12-12 Thread Robert Shearman
Robert Shearman wrote: ChangeLog: Zero initialize parameters in the generated code. Based on a patch by Eric Kohl. Oops. Looks like this patch was already accepted and the patch I just sent was a merge conflict. Please ignore. -- Rob Shearman

Re: Robert Reif : winecfg: Added support for auto detecting all drivers by attempting to

2005-12-12 Thread Eric Pouech
It is not typical for an application to bypass winmm and communicate directly with a driver. Only a control panel or device manager type application would ever even try something like this. Winecfg is one of those unusual programs. Opening a driver more than once will not cause any

Re: Wine: DirectDraw over Direct3D

2005-12-12 Thread Stefan Dösinger
Hello, Following your mail on wine-devel about DDRAW, I now understand better what's going on behind the scenes. Below is the result of an experiment I did at the beginning of this month. Reading your message, I wanted to share it with you. First, thanks for your comments, and one suggestion:

Re: RFC: D3D7 and WineD3D

2005-12-12 Thread Stefan Dösinger
Hello, The patch is now on the sourceforge page, and it can be found at https://sourceforge.net/project/showfiles.php?group_id=134206package_id=172232. The only working games are Tomb Raider 3 Demo and Moto Racer 2 Demo, so it's not really exciting from a users point of view right now. Stefan

gethostbyname(my_name) and IL2-Sturmovik

2005-12-12 Thread David Nolden
I've just checked the registry-accesses. It only seems to take the own name from there(which it later uses to get the IP-Adress). It doesn't try to read anything in the area mentioned on the microsoft-site you sent me. greetings, David Nolden

gethostbyname(my_name) and IL2-Sturmovik

2005-12-12 Thread David Nolden
Ok, I've just checked doing the same thing under windows. The test(ripdaveno is the name of the Computer I tested on): { ... hostent* h = gethostbyname(ripdaveno); char* str = inet_ntoa(*((in_addr*)h-h_addr_list[0])); ... } The string in str was 192.168.2.75 which is my Network IP-Adress.

Re: gethostbyname(my_name) and IL2-Sturmovik

2005-12-12 Thread Juan Lang
Hi David, The string in str was 192.168.2.75 which is my Network IP-Adress. With wine(under Linux), as far as I've tested it, exactly the same code always generates 127.0.0.1. Since Wine tries to simulate Windows as exactly as possible, this is wrong. So, in my opinion this Patch is

Re: Wine: DirectDraw over Direct3D

2005-12-12 Thread Aric Cyr
Stefan Dösinger stefandoesinger at gmx.at writes: least write access to /dev/mem, which is a HORRIBLE security risk. That's were OpenGL comes into play: It is hardware accellerated, and doesn't require /dev/mem access. But the drawback is, that it needs a 3D accellerator, and a decent

Re: Outreach to windows ISVs

2005-12-12 Thread Aric Cyr
Dan Kegel dank at kegel.com writes: On 12/12/05, Andreas Mohr andi at rhlx01.fht-esslingen.de wrote: http://kegel.com/wine/isv/ Some important missing keywords/topics: porting, MFC, Visual Basic, Unix, win32, api, toolkit. Those omissions alone would account for a 50% internet

Can't install mdac at all now

2005-12-12 Thread Dan Kegel
Bug 3636 is worse now. http://bugs.winehq.org/show_bug.cgi?id=3636 A few weeks ago, after mdac installer finished, I could go and unpack the installed cabs by hand. Now the installer aborts before it even copies the cabs. Bleah. -- Wine for Windows ISVs: http://kegel.com/wine/isv

Re: Outreach to windows ISVs

2005-12-12 Thread Dan Kegel
aric wrote: http://kegel.com/wine/isv/ This sort of thing seems ideal for the Wine wiki. At least a link to your page would definitely be in order. Just a thought. Don't get me started about wikis. If you like the page, link to it. Thanks, Dan -- Wine for Windows ISVs:

Can Wine run sv.net classic? Not at the moment :-(

2005-12-12 Thread Dan Kegel
http://www.heise.de/newsticker/meldung/67265 describes what looks like a nice opportunity for wine to prove itself. German employers are required to send insurance information online. There are two allowed methods: either a web page (which apparantly sucks), or a windows app called sv.net