Re: [Wine]june 2005 release and 'registry' ?

2005-07-10 Thread Sylvain Petreolle
It seems that the native only choice doesnt work into winecfg - I tried to set one dll as 'Native(Windows)' and got native,builtin into the registry. Could you have a look for this ? --- Felix Nawothnig [EMAIL PROTECTED] a écrit : Brian Vincent wrote: What may not be obvious is the

FWIW, news of SFU and wine

2005-07-10 Thread Wesley Parish
I've installed MS SFU successfully. I can now use gcc under wine on Linux to compile source for Linux under wine on Linux ... ;) A bit bizarre, and a decidedly roundabout way of doing things, but what's a challenge for? I had a go at installing the x-window-system-on-MS-Windows package shown

Re: FWIW, news of SFU and wine

2005-07-10 Thread Felix Nawothnig
Wesley Parish wrote: I've installed MS SFU successfully. I can now use gcc under wine on Linux to compile source for Linux under wine on Linux ... ;) Are the SFU not implemented on top of ntdll? Considering that we don't even have NtCreateProcess it's hard to believe for me that it

Re: [Wine]june 2005 release and 'registry' ?

2005-07-10 Thread Felix Nawothnig
Sylvain Petreolle wrote: It seems that the native only choice doesnt work into winecfg - I tried to set one dll as 'Native(Windows)' and got native,builtin into the registry. Could you have a look for this ? Works fine for me... Felix

Re: FWIW, news of SFU and wine

2005-07-10 Thread Wesley Parish
This is what I get while testing it [EMAIL PROTECTED] Interix]$ wine posix.exe The license for Services for Unix has expired. Please update your licensing information. fixme:console:SetConsoleCtrlHandler (0x1003290,0) - no error checking or testing yet [EMAIL PROTECTED] Interix]$ Evidentally it

d3d8 - d3d9 - wined3d? or d3d8 - wined3d, d3d9 - wined3d?

2005-07-10 Thread Nick Burns
Ok simple question... should d3d8 be based off of d3d9 or wined3d? (or should it stay solo...) Since d3d9 is a fixed interface (d3d8 is basically a subset) and the fact that wined3d can change it could help maintenence in the long run mayhap? ...just a simple question... nothing major Nick

Re: Debugger startup

2005-07-10 Thread Mike Hearn
On Sun, 10 Jul 2005 14:07:53 +1000, Robert Lunnon wrote: OK, what do you mean the kernel doesn't allow you to do that - Suspend a thread or ??? Why not just write a SIGSTOP SIGSTOP has process scope on NPTL, I think. If SIGUSR1 isn't handled, then stuff will break mysteriously. Essentially all

Re: user: test: LoadImage() alpha handling

2005-07-10 Thread Frank Richter
On 08.07.2005 16:18, Alexandre Julliard wrote: Is this really supposed to fail on Wine? It works fine here... Well, fails for me. Hm, I'm currently using the Cygwin/X server which reports a display depth of 24bpp... perhaps the test is sensible to the display depth? Maybe yours is 32bpp, by

Re: Make Size Returned from HeapSize Always Match The Requested Size

2005-07-10 Thread Alexandre Julliard
Robert Shearman [EMAIL PROTECTED] writes: --- dlls/ntdll/heap.c 25 Jun 2005 18:00:57 - 1.41 +++ dlls/ntdll/heap.c 8 Jul 2005 16:22:47 - @@ -52,6 +52,9 @@ typedef struct tagARENA_INUSE { DWORD size;/* Block size; must be the first field */ DWORD

Re: [RESENT] Add --all option to crosstest

2005-07-10 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: Changelog wine/include/wine/test.h Add --all option to run all tests in the testlist This has been discussed before, tests should be able to assume a clean environment when starting. It's much better to do that in a wrapper script. --

Re: [RESENT] Check for a valid buffer in NTReadFile

2005-07-10 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: wine/dlls/ntdll/file.c: NtReadFile() Reject a NULL buffer That should be handled by the EFAULT case already. Why does it make a difference for you? -- Alexandre Julliard [EMAIL PROTECTED]

Re: [Resent] Disable CopyImage for IMAGE_BITMAP for now

2005-07-10 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: dlls/user/cursoricon.c: CopyImage() for IMAGE_BITMAP Disable for now, code causes memory corruption Then it should be fixed, not disabled. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RESENT] Check for a valid buffer in NTReadFile

2005-07-10 Thread Uwe Bonnes
Alexandre == Alexandre Julliard [EMAIL PROTECTED] writes: Alexandre Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: wine/dlls/ntdll/file.c: NtReadFile() Reject a NULL buffer Alexandre That should be handled by the EFAULT case already. Why does Alexandre it make a difference for

Re: [Resent] Disable CopyImage for IMAGE_BITMAP for now

2005-07-10 Thread Uwe Bonnes
Alexandre == Alexandre Julliard [EMAIL PROTECTED] writes: Alexandre Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: dlls/user/cursoricon.c: CopyImage() for IMAGE_BITMAP Disable for now, code causes memory corruption Alexandre Then it should be fixed, not disabled. The present

Re: [RESENT] Check for a valid buffer in NTReadFile

2005-07-10 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: The EFAULT handler doesn't trigger for the test in wine/dll/kernel/test/file.c:1389 Without the extra check, the test fails. The test works fine here. Looks like you'll need to debug this further. -- Alexandre Julliard [EMAIL PROTECTED]

Managementness of borderless windows

2005-07-10 Thread Stefan Dösinger
Hello List, Wine has problems with Windows which don't have the WS_CAPTION flag set. These Windows are usually not managed, which leads to focus problems(no keyboard) and the window constantly stays on top. I had a look on this and tried to find a solution: (Applications tested: Steam,

Re: [RESENT] Check for a valid buffer in NTReadFile

2005-07-10 Thread Uwe Bonnes
Alexandre == Alexandre Julliard [EMAIL PROTECTED] writes: Alexandre Uwe Bonnes [EMAIL PROTECTED] writes: The EFAULT handler doesn't trigger for the test in wine/dll/kernel/test/file.c:1389 Without the extra check, the test fails. Alexandre The test works fine here.

commctrl: initial button theming support - next try

2005-07-10 Thread Frank Richter
Hi, I've worked the suggestions made wrt into that new patch. In particular, - subclassing is now properly done with SetWindowSubclass - uxtheme is delay-loaded - minor things like a correct hot flag and more cleanliness due the better subclassing. I've uploaded the patch to:

Re: Managementness of borderless windows

2005-07-10 Thread Felix Nawothnig
Stefan Dösinger wrote: Hello List, Wine has problems with Windows which don't have the WS_CAPTION flag set. These Windows are usually not managed, which leads to focus problems(no keyboard) and the window constantly stays on top. [...] Can anyone suggest a solution? How about fixing the

Re: ListBox: Fix LB_SETTABSTOPS (Resend)

2005-07-10 Thread Alexandre Julliard
Robert Shearman [EMAIL PROTECTED] writes: @@ -1277,12 +1286,14 @@ static INT LISTBOX_SetFont( LB_DESCR *de return 16; } if (font) oldFont = SelectObject( hdc, font ); -GetTextMetricsW( hdc, tm ); +GetTextExtentPointA( hdc, alphabet, 52, sz); if (oldFont)

Re: Managementness of borderless windows

2005-07-10 Thread Stefan Dösinger
Am Sonntag, 10. Juli 2005 20:00 schrieb Felix Nawothnig: Stefan Dösinger wrote: Hello List, Wine has problems with Windows which don't have the WS_CAPTION flag set. These Windows are usually not managed, which leads to focus problems(no keyboard) and the window constantly stays on top.

Re: [Wine]june 2005 release and 'registry' ?

2005-07-10 Thread Alexandre Julliard
Mike Hearn [EMAIL PROTECTED] writes: Eg, even Windows Version will hopefully be fixed sometime later this year (?) by switching us to 2K/XP mode by default and by nailing the last DCOM problems. Actually we probably want to do that before 0.9, which means real soon now... Desktop mode will

Re: d3d8 - d3d9 - wined3d? or d3d8 - wined3d, d3d9 - wined3d?

2005-07-10 Thread Lionel Ulmer
Ok simple question... should d3d8 be based off of d3d9 or wined3d? (or should it stay solo...) It will be based off 'wined3d' which is the Wine driver that will provide 3D support to all revisions of DirectX (for now, mostly D3D8 and 9, but in the future, migrating DX1-7 is planned also).

Re: Half-Life 2 / Counter-Strike: Source under Wine

2005-07-10 Thread Ivan Gyurdiev
Steam and Half-Life 2 have a utility that dumps debugging information when either crashes and this is what uses msvcr70 and the dbghelp functions. Turn on +seh logging and you'll likely see a STATUS_ACCESS_VIOLATION before this. With the newest patches on d3d, this is no longer the

Re: Managementness of borderless windows

2005-07-10 Thread Joe Baker
Stefan Dösinger wrote: Am Sonntag, 10. Juli 2005 20:00 schrieb Felix Nawothnig: Stefan Dösinger wrote: Hello List, Wine has problems with Windows which don't have the WS_CAPTION flag set. These Windows are usually not managed, which leads to focus problems(no keyboard) and the window

Looking for a good disassembler

2005-07-10 Thread James Liggett
Hi all, Can someone recommend a good win32 disassembler, preferably one that shows the contents of data segments and shows imports/exports? Thanks a lot, James Liggett

Re: App db not accepting screen shots....

2005-07-10 Thread Jonathan Ernst
We already use gd which can do much the same as imagemagick (I don't think we have imagemagic on the server). We are already resizing the image if it's too big (pixels size, not byte size). I already sent a patch long time ago which tells the user that the image cannot be added because it's too

Re: AppDB Not accepting backslashes in HOWTOs

2005-07-10 Thread Jonathan Ernst
I know about this problem, I'll try to fix it and send a patch. Thanks for the feedback ! Le samedi 09 juillet 2005 à 19:33 -0700, James Liggett a écrit : Thanks Andrew, that worked. Duh...I should have thought of that. BTW, did you get Windows Installer working? James On Sun, 2005-07-10

RE: Looking for a good disassembler

2005-07-10 Thread Nick Burns
OllyDbg is a good free binary disassembler/debugger http://www.ollydbg.de/ Ida Pro is a very nice disassembler/debugger -- (its commerical but it there is a free windows version) http://www.datarescue.com/ http://www.datarescue.com/idabase/idadown.htm W32Dasm is a decent

Re: Looking for a good disassembler

2005-07-10 Thread Andreas Mohr
Hi, On Sun, Jul 10, 2005 at 02:31:57PM -0700, James Liggett wrote: Hi all, Can someone recommend a good win32 disassembler, preferably one that shows the contents of data segments and shows imports/exports? You probably want IDA (Interactive DisAssembler). With about $600 or so too expensive

Re: Looking for a good disassembler

2005-07-10 Thread Roger Young
On Sun, 10 Jul 2005 14:31:57 -0700 James Liggett [EMAIL PROTECTED] wrote: Hi all, Can someone recommend a good win32 disassembler, preferably one that shows the contents of data segments and shows imports/exports? Geprge Bush? Thanks a lot, James Liggett This message has been

Re: ListBox: Fix LB_SETTABSTOPS (Resend)

2005-07-10 Thread Robert Shearman
Alexandre Julliard wrote: Robert Shearman [EMAIL PROTECTED] writes: @@ -1277,12 +1286,14 @@ static INT LISTBOX_SetFont( LB_DESCR *de return 16; } if (font) oldFont = SelectObject( hdc, font ); -GetTextMetricsW( hdc, tm ); +GetTextExtentPointA( hdc, alphabet, 52, sz);

Re: Looking for a good disassembler

2005-07-10 Thread Anderson Lizardo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sun, Jul 10, 2005 at 02:31:57PM -0700, James Liggett wrote: Can someone recommend a good win32 disassembler, preferably one that shows the contents of data segments and shows imports/exports? I use the HT Editor (http://hte.sourceforge.net/).

Re: Looking for a good disassembler

2005-07-10 Thread Felix Nawothnig
Nick Burns wrote: REC is an impressive free deCompiler (better than a simple disassembler) its based off of boomarang REC uses compiler dependend pattern matching which often fails miserably for modern code, it doesn't recognize a huge amount of i386 opcodes (even some i386 opcodes) and I've