+ if (options & DNS_QUERY_NO_NETBT)
+ FIXME( "option DNS_QUERY_NO_NETBT not implemented\n" );
In fact, you do support this. You don't support the lack of it. That is,
you don't call NetBIOS() to do a name lookup if it isn't specified. I'm
not sure you really want to though.
--Juan
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
In KDevelop, did you set up a new project your ddraw test app? If so, which type did you pick? Thanks.
-----Original Message-----
From: Stefan Dِsinger [mailto:stefandoesinger@gmx.at]
Sent: Thursday, March 23, 2006 9:27
To: wine-devel(a)winehq.org; Ng, Billy H CIV NAVSEA
Subject: Re: IDE with Winemaker
Hi,
> Hi, I am a Windows Developer who is new to the Linux world. Is there any
> IDE (like Visio Studio) I can use with Winemaker? I am trying to port a
> Windows App to Linux Fedora.
…
[View More]I managed to use wineg++ with kdevelop by overriding the compiler. It worked
quite well for my needs(code a ddraw test app), but I don't know if it works
for bigger apps. Just set a CC="winegcc", CXX="wineg++" and
LINK="winegcc" (??) environment variable in the projekt options.
There isn't any IDE which offers an editor for the resource files, so you have
to edit them by hand.
[View Less]
On Tue, 11 Apr 2006 10:24:14 +0200, you wrote:
>> Hi,
>>
>> There are a couple of entries in the bug database (at least #4334 and
>> #4664) where the application calculates a wrong pointer for bitmap data.
>> The application survives on Windows but crashes on wine.
>>
>>
>> Changelog:
>> dlls/x11drv : dib.c
>> dlls/gdi/tests : bitmap.c
>> Protect the Set/Stretch DIBitfunctions from accessing bad bitmap data.
>> Add some …
[View More]tests that would crash without that.
>>
>
>Hello,
>
>I'm sorry if writing to you directly is not right thing to do, I was
>advised so on #wine-hq.
>
>I would just like to ask you why this patch didn't get merged to git
>(and subsequently to 0.9.11) and if there is anything I can do to get it
>in in time for 0.9.12?
I have no idea why it was not merged, never got any comments. Cc' ed to
the developers list for suggestions. A re-diffed patch is attached.
Rein
[View Less]
Duane Clark wrote:
>I also have an installer (for Xilinx) that exhibits this problem. I
>created a small application that creates a single line edit control
>(which is what the Xilinx installer uses). I notice that on Win2k the
>EM_GETMARGINS message returns zero for left and right messages, but on
>Wine it returns 2 for both margins.
Would that be suitable for use as a conformance test?
- Dan
--
Wine for Windows ISVs: http://kegel.com/wine/isv
I'm having a strange problem with Wine - it will not show any characters
in any windows, UNLESS I delete Wine's registry files - then it will
show characters for the first program run, but no other programs
thereafter (including repeat runs of the first program).
So, for example, I can run "winecfg" and it will show the config window,
with 2 rows of tabs, but no text anywhere. If I then delete
~/.wine/*.reg and re-run winecfg, it will show the characters, and
interestingly enough it will …
[View More]place the tabs in one long row rather than
2 rows. If I then run, say, regedit, it will NOT show any characters at
all. If I exit winecfg and re-run it, it will now show no characters,
and it will place the tabs into 2 rows.
I've run it with WINEDEBUG=+font and don't see anything screamingly
obvious in terms of errors.
This is with a fresh full checkout from CVS as of yesterday (11 Apr
2006), built, and installed (after removing /usr/include/wine,
/usr/lib/wine, and /usr/bin/wine*), under SuSE 9.3.
Soooo - any suggestions for things to look for?
[View Less]
Hi,
There is a problem with explorer managing the desktop and the sending of
PAINT messages. I've narrowed it down to the following area. In
dlls/user/message.c wait_message_reply(), if QS_PAINT are the bits we get,
and we call MsgWaitForMultipleObjectsEx, it seems to block the process
indefinitely. Should another process be replying here? I decided to
make the function return if we get QS_PAINT. Now my app doesn't hang and
paints properly. Any ideas what I should be looking for or know?
…
[View More]Note the call MsgWaitForMultipleObjectsEx waits for sent messages.
Changing it makes no difference.
Thanks,
Jesse
--- wine-current/dlls/user/message.c 2006-03-30 19:37:06.000000000 -0700
+++ wine/dlls/user/message.c 2006-04-09 18:47:14.000000000 -0700
@@ -2136,7 +2136,7 @@ static void wait_message_reply( UINT fla
}
SERVER_END_REQ;
- if (wake_bits & QS_SMRESULT) return; /* got a result */
+ if (wake_bits & (QS_SMRESULT | QS_PAINT)) return; /* got a result */
if (wake_bits & QS_SENDMESSAGE)
{
/* Process the sent message immediately */
[View Less]
>Ok, I'm not sure about it waiting for that event. The call is
>0009:Call kernel32.WaitForSingleObject(00000048,ffffffff) ret=00401c00
>
>Anyway I wrote a test app, showwindow.c. It is available on
>ftp://resnet.dnip.net . The relay log is there too. The test app tries
>to mimic the calls I see. I tested under wine and it does hang. I
>will see about windows.
I don't know if I did it right. I created an empty Win32 application with
VC6, added your file, added an #include …
[View More]<stdio.h> for printf and
compiled it successfully. Upon running a window shortly flashes
up and the program ends, but no messages are printed to the
command window.
Most important thing I guess is that it didn't hang.
bye Fabi
[View Less]
Hello,
I have found that the DDraw/DirectX 7 over WineD3D patch introduces a
regression. Heroes of Might and Magic IV now displays a menu in the
upper area of the screen, something it is only supposed to do in
windowed mode. The game is then moved a little down, so the bottom of
the screen disappears.
If the game's resolution is changed, it displays correctly, but if it
then is changed back to the resolution it had when it started, the menu
appears again.
How it works with current CVS
…
[View More]http://appdb.winehq.org/screenshots.php?appId=1229&versionId=1638
How it works with the patch
http://www.thehandofagony.com/alex/winepics/heroes4_regression.png
Regards,
Alexander N. Sørnes
[View Less]
Marcus wrote:
> I have started adding gphoto2 support to twain.dll.
Sounds good. I'm mildly surprised twain doesn't
support libgphoto2 as a backend already, but whatever...
- Dan
--
Wine for Windows ISVs: http://kegel.com/wine/isv