Re: Wine Debugger

2005-03-31 Thread Paul Millar
Hi Cal, If you change the AeDebugger setting to include the --auto option: HKLM,Software\Microsoft\WindowsNT\CurrentVersion\AeDebug,"Debugger",,"winedbg --auto %ld %ld" This is the default if you delete the key completely and is now also the default if you have no registry and wine creating a

Re: KERNEL: improve stubs for DnsHostnameToComputerName{A,W}

2005-03-31 Thread Peter Berg Larsen
On Thu, 31 Mar 2005, Peter Berg Larsen wrote: > +memcpy( computername, hostname, len ); > +computername[len + 1] = 0; > or you risk the computername[len+1] is invalid. Hmm, why didnt I see that at once; usually mistake here. Dont you mean computername[len] = 0; Peter

Re: Implementation of EnumMoniker and Partial impl on MkParseDisplayName

2005-03-31 Thread Mike McCormack
Jeff Latimer wrote: Rob, I did not grasp what you meant by this. The examples I looked at to set this up seem to do the way I coded it. If you put the vtable at the end of the file after all the functions are declared, there should be no need to declare any functions as prototypes. Mike

Re: Implementation of EnumMoniker and Partial impl on MkParseDisplayName

2005-03-31 Thread Jeff Latimer
Rob, I did not grasp what you meant by this. The examples I looked at to set this up seem to do the way I coded it. Jeff Robert Shearman wrote: Jeff Latimer wrote: +DWORD runObjTabRegister; /* registration key of the next registered object */ +DWORD currentPos;/* enum po

installing Win32 Compilers

2005-03-31 Thread Wesley Parish
Installing MinGW32 together with msys-1.* and msysDTK was a breeze. I started installing lccwin32, only to find problems with the library compilation in the latter part of installation, with it hanging once it got to commandline.txt fdlibm.liblcccrt0.obj libcrt0s.obj stdlib.idx complex

Re: KERNEL: improve stubs for DnsHostnameToComputerName{A,W}

2005-03-31 Thread Peter Berg Larsen
+BOOL WINAPI DnsHostnameToComputerNameA(LPCSTR hostname, +LPSTR computername, LPDWORD size) ... +DWORD len; + ... +if (!hostname || !size) return FALSE; +len = lstrlenW(hostname); + +if (len > MAX_COMPUTERNAME_LENGTH) +len = MAX_COMPUTERNAME_LENGTH; + +if (*size < l

Re: Wine Debugger

2005-03-31 Thread Francois Gouget
On Thu, 31 Mar 2005, Pouech Eric DMI AEI CAEN wrote: use regedit at the beginning of your script to set the AeDebug key to a "" string (and you should have saved the key value before), and restore it at the end of your script Alternately you could add the '--auto' option and winedbg should then

GetExitCodeProcess always returns 1

2005-03-31 Thread Igor Sysoev
2 years ago I reported that on FreeBSD Wine-20030508's GetExitCodeProcess() always returns 1: http://www.winehq.org/hypermail/wine-devel/2003/06/0100.html It was fixed by patch: http://www.winehq.org/hypermail/wine-devel/2003/06/0381.html and I used the patched Wine-20030508 all the time to run MSV

Re: winetest: ask for a tag (take 2)

2005-03-31 Thread Alexandre Julliard
Ferenc Wagner <[EMAIL PROTECTED]> writes: > ChangeLog: Ask for a tag if one was not given on the command line. > > This patch incorporates the suggestions of Rob and Mike. > Some casts are still necessary to suppress the warnings, but > this code is hopefully 64-bit safe. Simply storing the stri