Re: OLE without TLS libraries

2005-12-07 Thread Marcus Meissner
On Thu, Dec 08, 2005 at 12:35:32PM +1000, Cihan Altinay wrote: > Hi, > > having a Xen system my Linux tls library path is not > in place (renamed to /lib/tls.disabled). > When I run a program that uses OLE/DCOM (with native > ole libraries) it crashes immediately. Using > LD_LIBRARY_PATH=/lib/tls.

Re: how do I find where wine itself is segfaulting?

2005-12-07 Thread Keith Dunwoody
Hi, I'm running into the same problem. File on the resulting core tells me it was generated from wine-preloader. I'm using wine 0.9.2 for Fedora Core 3 from winehq (the i686 version I believe). I'm running an x86_64, if that matters. -- Keith --- Bill Medland <[EMAIL PROTECTED]> wrote: > Bac

Re: Hungarian keyboard detection problem

2005-12-07 Thread Dmitry Timoshkov
"Wallner Ádám" <[EMAIL PROTECTED]> wrote: +/*** Hungarian keyboard layout (setxkbmap hu) | modified by Adam Wallner*/ +static const char main_key_HU_new[MAIN_LEN][4] = +{ + "0§","1'","2\"","3+","4!","5%°","6/","7=","8(","9)","AsA-","AzAo","AlA"", + "qQ","wW","eE","rR","tT","zZ","uU","iI","oOA¸

OLE without TLS libraries

2005-12-07 Thread Cihan Altinay
Hi, having a Xen system my Linux tls library path is not in place (renamed to /lib/tls.disabled). When I run a program that uses OLE/DCOM (with native ole libraries) it crashes immediately. Using LD_LIBRARY_PATH=/lib/tls.disabled wine program makes it work again. I am not sure if this is true for

how do I find where wine itself is segfaulting?

2005-12-07 Thread Bill Medland
Background. I am trying to figure out why a program that I thought ran OK on 25 October no longer runs and no longer runs when I recompile from that code too. So the program accesses invalid memory down inside the WNDPROC stuff (winproc.c line 418, it says, so I guess it means line 416) So I

Re: wglGetPixelFormatAttribivARB unexpected RenderType(100)

2005-12-07 Thread Raphael
On Monday 05 December 2005 23:53, Toan T Nguyen wrote: > Hi, thanks for the clarification. Everything is fine then. Thank you > for the patch. was Nothing > BTW, do you know how to improve OpenGL performance in wine? I get > about 10-30% drop in FPS compared to the Windows version (the card is >

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

2005-12-07 Thread Robert Reif
Eric Pouech wrote: I do think all the recent changes to winecfg are going into the wrong direction. First of all, allowing the devices to be opened more than once without having the devices ready for that is a ready bad idea. Basically, windows drivers come in two flavors: - single instance

Re: josystick driver layer and support of multiple devices of one kind

2005-12-07 Thread Eric Pouech
so my questions: - i this an approach, that would be acceptablefor wine? so if i start on something like this, is there a chance it would be submitted to the tree - or is there a problem in terms of "wine does not work like this and we would ignore such an approach" - is the sound-system

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

2005-12-07 Thread Eric Pouech
I do think all the recent changes to winecfg are going into the wrong direction. First of all, allowing the devices to be opened more than once without having the devices ready for that is a ready bad idea. Basically, windows drivers come in two flavors: - single instance (they can be loaded

Re: tests for LoadLibraryA [resend, 2nd]

2005-12-07 Thread Alexandre Julliard
Stefan Leichter <[EMAIL PROTECTED]> writes: > Hello, > > this tests exhibit a problem of Wiso Sparbuch 2006 (german tax program). The > tests are verified against Win2k > > ChangeLog > --- > test loading an executable with LoadLibraryA It doesn't really test that; and actuall

Re: RpcServerListen and RpcMgmtWaitServerListen

2005-12-07 Thread Robert Shearman
Phil Lodwick wrote: Hi, I have a program that basically does: RpcServerUseProtseqEp RpcServerRegisterIf RpcServerListen(DontWait=FALSE) On Windows this will block until another thread calls RpcMgmtStopServerListening. This does not appear to be the case with Wine's im

Re: Shell32 File Property Dialog

2005-12-07 Thread Mike McCormack
Johannes Anderwald wrote: @@ -1185,6 +1185,7 @@ BOOL SHELL_execute( LPSHELLEXECUTEINFOW static const WCHAR wFile[] = {'f','i','l','e',0}; static const WCHAR wHttp[] = {'h','t','t','p',':','/','/',0}; static const WCHAR wExplorer[] = {'e','x','p','l','o','r','e','r','.','e','x','

Re: Fix dll_count in mis.c

2005-12-07 Thread Mike McCormack
Christian Gmeiner wrote: I think that we need to init dll_count with 0 to get DllCanUnloadNow working correctly. -static LONG dll_count; +static LONG dll_count = 0; Static variables should be initialized to zero by default. Mike

RpcServerListen and RpcMgmtWaitServerListen

2005-12-07 Thread Phil Lodwick
Hi, I have a program that basically does: RpcServerUseProtseqEp RpcServerRegisterIf RpcServerListen(DontWait=FALSE) On Windows this will block until another thread calls RpcMgmtStopServerListening. This does not appear to be the case with Wine's implementation. Before I

Re: resend: [d3d] rearrange switch statement to have FIXMEs for unhalded query types

2005-12-07 Thread Christoph Frick
On Wed, Dec 07, 2005 at 12:26:17PM +0100, Alexandre Julliard wrote: > > this is a resend of a patch i sent some time ago, which was not applied. > There's already a FIXME being printed, I don't think we need two of > them. the fixme in the current CVS version is not executed for the unhandled def

Re: resend: [d3d] rearrange switch statement to have FIXMEs for unhalded query types - d3d guru help requested

2005-12-07 Thread Christoph Frick
On Wed, Dec 07, 2005 at 01:10:49PM +0100, Alexandre Julliard wrote: > > the fixme in the current CVS version is not executed for the unhandled > > defines (hence the break before default:) > There's another FIXME just after the switch that's executed in all > cases. yeah right - i just checked ag

josystick driver layer and support of multiple devices of one kind

2005-12-07 Thread Christoph Frick
hiho i did recently some patches to mostly make joystick_linuxdinput.c handle things more like joystick_linux.c. the main thing, that i dont like on this work, is the fact, that i am just copy-and-paste code from one end to another. i assume someone started back then the joystick_linuxdinput part

Re: winecfg: add options to switch between "installed" directx versions

2005-12-07 Thread Tom Wickline
On 12/7/05, Christian Gmeiner <[EMAIL PROTECTED]> wrote: > Hi all. > > I wanted to install "Need for Speed - Most wanted" under wine and the > setup told me, that directx is not installed. So > i think we need a way to set installed/used directx version in winecfg. > Do you think its worth to start

Re: resend: [d3d] rearrange switch statement to have FIXMEs for unhalded query types

2005-12-07 Thread Alexandre Julliard
Christoph Frick <[EMAIL PROTECTED]> writes: > the fixme in the current CVS version is not executed for the unhandled > defines (hence the break before default:) There's another FIXME just after the switch that's executed in all cases. -- Alexandre Julliard [EMAIL PROTECTED]

Re: winecfg: add options to switch between "installed" directx versions

2005-12-07 Thread Christoph Frick
On Wed, Dec 07, 2005 at 12:38:46PM +, Christian Gmeiner wrote: > I wanted to install "Need for Speed - Most wanted" under wine and the > setup told me, that directx is not installed. So i think we need a way > to set installed/used directx version in winecfg. Do you think its > worth to start

Re: Check some return values of fwrite()

2005-12-07 Thread Alexandre Julliard
Vincent Béron <[EMAIL PROTECTED]> writes: > Suppress some warnings. This is the first in a serie of patches, > checking the return values of a couple functions. > > Changelog: > Check some return values of fwrite(). If you absolutely want to do that, please write a wrapper function, don't add che

Re: resend: [d3d] rearrange switch statement to have FIXMEs for unhalded query types

2005-12-07 Thread Alexandre Julliard
Christoph Frick <[EMAIL PROTECTED]> writes: > hiho > > this is a resend of a patch i sent some time ago, which was not applied. There's already a FIXME being printed, I don't think we need two of them. -- Alexandre Julliard [EMAIL PROTECTED]

winecfg: add options to switch between "installed" directx versions

2005-12-07 Thread Christian Gmeiner
Hi all. I wanted to install "Need for Speed - Most wanted" under wine and the setup told me, that directx is not installed. So i think we need a way to set installed/used directx version in winecfg. Do you think its worth to start developing a patch in this direction? Thanks -- Christian Gmei

mounting versioning filesystems

2005-12-07 Thread Saulius Krasuckas
Everybody hi there, this may be a bit un(cor)related to Wine development, but I am stuck with choosing a way to mount some file versioning repository as a local FS. I've found on the net following projects of that vein: CvsFs [1] (CvsFS-FUSE) Wayback [2] CopyFS [3] GitFS [4] cvsfs and wa