Re: c:\\windows is not accessible message

2004-08-01 Thread Dan McGhee
http://www.linuxquestions.org/questions/showthread.php?s=&threadid=204255&highlight=wine I'm farmerdan in this thread. I used to get this message when I first started using wine. It came when I tried to use the windows partition AND when I had installed wine from a package. I have not recr

Re: Remove typelib ProxyStubClsid registration when no oleautomation interface is being registered

2004-08-01 Thread Jeroen Janssen
Marcus Meissner wrote: As far as I see it I have two options (to run this outprocess client/server program): 1) use the available proxy/stub code (which is what I assume Windows does?) However since some of the rpcrt4 stub/proxy handling in wine is not finished yet, this probably won't work alwa

Re: winrash: only sleep xx commands ?

2004-08-01 Thread Sylvain Petreolle
Yes, latests results at http:/test.winehq.com/data have been sent the 29 Jul ... --- Chris Morgan <[EMAIL PROTECTED]> a écrit : > It looks like it is running how it is supposed to. If you look at the script > that the winehq service is sending you by going to this url: > > http://test.winehq.

Re: winrash: only sleep xx commands ?

2004-08-01 Thread Chris Morgan
It looks like it is running how it is supposed to. If you look at the script that the winehq service is sending you by going to this url: http://test.winehq.com/service?winrash=winrash-0009-chris-msvc.exe&id=Usurp You'll notice that the only command is 'sleep 3600'. Maybe the winehq service cg

Re: Program runs okay, but has tiny font.

2004-08-01 Thread Niek Beernink
Nick Capik wrote: If you haven't received a response yet, try the following: 1. Change the resolution setting in the wine config file to a higher number. I use 150 with my screen, but something around 120 may suit you better. 2. For menus, which don't appear to be a problem in your screen sh

winrash: only sleep xx commands ?

2004-08-01 Thread Sylvain Petreolle
After a successful install of winrash with 'Usurp' as nick and this mailbox : [EMAIL PROTECTED] It seems that winrash is doing only sleep commands, having a look to \debug.txt. Simulating about 27 hours of running service with some 'time' and a 'date' commands seem to produce nothing else than "s

Re: Flags for building an rpm

2004-08-01 Thread Marcus Meissner
> > > > Unfortunately, my colleague is incommunicado for the next couple of > > weeks, and I cannot ask him how he built the rpm. I added a patch to > > fix the problem I reported recently in menu.c. Then, I built the rpm > > with the command: > > > > # rpmbuild -ba --platform athlon wine-20

winrash: some todos

2004-08-01 Thread Sylvain Petreolle
Some suggestions for winrash: * Running Windows NT version >= 4.XY, we should check for the use of an administrator account... installing as normal user gave these results : no error message said the HKLM keys couldnt be created => UserID & mail not set => service install/run fails silently * htt

Re: Program runs okay, but has tiny font.

2004-08-01 Thread Nick Capik
On Thursday 29 July 2004 09:19, Niek Beernink wrote: > Hello all, > > TD in #winehq told me to post this here. > I'm trying to run the following program in wine, > > It loads up okay, but the font in the program is really tiny and I >

Re: Flags for building an rpm

2004-08-01 Thread Vincent Béron
Le sam 31/07/2004 à 15:31, Dan Timis a écrit : > A colleague built a wine rpm a while ago. Here is the size and date: > > 9922591 Apr 29 14:32 wine-20040408-1muse.athlon.rpm > > If I look on the winehq site I see similar sizes, only slightly larger: > > wine-20040716-1rh8winehq.athlon.rpm 11662

Re: Question about mmap issues on FreeBSD/NetBSD

2004-08-01 Thread Yorick Hardy
Try the patch below, I am not yet sure why this would be necessary. Perhaps it helps. >I've got some cross platform issues i cannot resolve. There are some >obvious issues like the assumption that round() is in the math library >and not linking in the math library itself. i've worked passed thos

Wine leaking GDI handles?

2004-08-01 Thread Jon Griffiths
Hi, I am trying to track down some GDI leaks in a large application I am porting. To make things easier I added logging to GDI_AllocObject and GDI_FreeObject in order to find mismatches at program termination, and hacked a script to find allocations that weren't deallocated. The patch to dlls/gdi/

wine debugger

2004-08-01 Thread Chipzz
Hi all, for some reason, the wine debugger just doesn't seem to work for me. wine: Unhandled exception (thread 000f), starting debugger... fixme:console:SetConsoleCtrlHandler (0x405ae990,1) - no error checking or testing yet WineDbg starting on pid 0xe In 32 bit mode. Wine-dbg>bt Backtrace: =>1 0

Re: More winecfg todos

2004-08-01 Thread Chris Morgan
Here is a patch that recreates the "Global settings" entry in the app defaults tab if the user removes it. It also fixes some indenting and removes a while() loop that was inside of another identical while(). Mike, it doesn't look like I'll have time test this and I've been sitting on it for

More winecfg todos

2004-08-01 Thread Mike Hearn
On Thu, 29 Jul 2004 23:19:11 -0500, Alexandre Julliard wrote: > Log message: > James Hawkins <[EMAIL PROTECTED]> > Under the Drives tab, remove the 'Windows Drive' section. You probably want to increase the size of the drive mappings list so it fills the tab, currently there is just a

Re: cleanup a->w cross calls in advapi32/crypt.c

2004-08-01 Thread Dmitry Timoshkov
"James Hawkins" <[EMAIL PROTECTED]> wrote: > What is left to change? > - DWORD keytype, type, len; > + DWORD keytype, type, len, size; Why do you need new 'size' variable? 'len' works fine. > - CRYPT_Free(keyname); > - r = RegQueryValueExA(key, "Name", NULL, &keytype, NULL, &len); > - if( r

c:\\windows is not accessible message

2004-08-01 Thread Mike Hearn
Hi guys, It seems quite a few people have been seeing this message lately, and I'm not sure why. This occurs even with a non-existant ~/.wine directory, so wineprefixcreate should set up a correct system for them. Examples: http://www.linuxquestions.org/questions/showthread.php?s=&threadid=20425

Re: cleanup a->w cross calls in advapi32/crypt.c

2004-08-01 Thread James Hawkins
What is left to change? On Sun, 1 Aug 2004 20:14:58 +0900, Dmitry Timoshkov <[EMAIL PROTECTED]> wrote: > "James Hawkins" <[EMAIL PROTECTED]> wrote: > > > Fixed even more bugs spotted by Dmitry. > > > > Changelog > > * cleanup cross-call functions > > The quality of the patch still is not good

Re: cleanup a->w cross calls in commdlg/fontdlg.c

2004-08-01 Thread Dmitry Timoshkov
"James Hawkins" <[EMAIL PROTECTED]> wrote: > Changelog > * fix cross-call functions > -return DialogBoxIndirectParamA(COMDLG32_hInstance, template, > +return DialogBoxIndirectParamW(COMDLG32_hInstance, template, > lpChFont->hwndOwner, FormatCharDlgProcA, (LPARAM)lpChFont

Re: cleanup a->w cross calls in advapi32/crypt.c

2004-08-01 Thread Dmitry Timoshkov
"James Hawkins" <[EMAIL PROTECTED]> wrote: > Fixed even more bugs spotted by Dmitry. > > Changelog > * cleanup cross-call functions The quality of the patch still is not good enough. -- Dmitry.

Re: [RESENT] Make wine work with freedesktop.org MIME system

2004-08-01 Thread Mike Hearn
This was checked into CVS a few days ago, no need to resend. thanks -mike On Sun, 2004-08-01 at 11:35 +0200, Christian Neumair wrote: > Mike felt good enough to explain me on IRC where I should hook into the > wine build system. I've put up a tiny patch that works like a charm with > GNOME/shared

Re: cleanup a->w cross calls in advapi32/crypt.c

2004-08-01 Thread Dmitry Timoshkov
"James Hawkins" <[EMAIL PROTECTED]> wrote: > Fixed more bugs spotted by Dmitry. > > Changelog >* cleanup cross-call functions If you could use 'static const' as everywhere else and not 'const static' that would be nice. > + size = sizeof(DWORD); > + r = RegQueryValueExW(key, nameW, NULL, &k