Re: default wine browser

2003-12-27 Thread Chris Morgan
On Saturday 27 December 2003 11:33 pm, Jeremy Shaw wrote: > Hello, > > I like the idea. Under LindowsOS, I hacked up the shlexec.c so that if > no browsers are installed under wine, it tries to run mozilla (for > linux). This is because the xten sipphone software attempts to open > web pages in a f

Re: default wine browser

2003-12-27 Thread Jeremy Shaw
Hello, I like the idea. Under LindowsOS, I hacked up the shlexec.c so that if no browsers are installed under wine, it tries to run mozilla (for linux). This is because the xten sipphone software attempts to open web pages in a few circumstances, and we want that to work. Ideally, we want the xte

Re: HTML Doc generation...

2003-12-27 Thread Joshua Walker
Oops, my bad, there is an index.html. It was just tucked away in the middle of all those other html documents that were created. ^_^; --- Joshua Walker <[EMAIL PROTECTED]> wrote: > Hi all, >Well, I've pulled down a CVS copy of wine and I'm > currently at work overhauling the API > documentata

HTML Doc generation...

2003-12-27 Thread Joshua Walker
Hi all, Well, I've pulled down a CVS copy of wine and I'm currently at work overhauling the API documentataion. I do have some nitpicks. 1) I'm using the HTML documentation (make doc-html) to check my work. An issue I kind of have with this is an index.html isn't generated. This would be most t

Re: default wine browser

2003-12-27 Thread Chris Morgan
Bleh. I meant that I symlinked /c/windows/system/winebrowser.exe to /usr/ local/bin/winebrowser. Chris On Saturday 27 December 2003 09:50 pm, Chris Morgan wrote: > In trying to install the United Devices application the installer prompts > me to go to a website to get the msi installer. Wine d

default wine browser

2003-12-27 Thread Chris Morgan
In trying to install the United Devices application the installer prompts me to go to a website to get the msi installer. Wine doesn't have a HKEY_LOCAL_MACHINE\software\classes\http\shell\open\command key in the registery. I was thinking about making a shell script something along the lines

Re: wchar_t on GNU and Win32 - two worlds apart !

2003-12-27 Thread Chris Morgan
> 2. If you insist on using C++: > if the problem resists analysis, perhaps you could use Valgrind > to help track down the problem. It's pretty easy to build the > wine edition of valgrind, and you don't need any special changes > to wine. You can download valgrind's sources at http://valgrind.k

Re: wchar_t on GNU and Win32 - two worlds apart !

2003-12-27 Thread Dan Kegel
Dan Kegel wrote: I'm way out of touch with Wine these days, but here's [ meant to say "my two bits"... obviously my mind is wandering... ] 1. If you want to get something useful done, switch to C. Mixing g++ and Winelib seems to be a bit tricky, and you might end up spending all your time on that

Re: wchar_t on GNU and Win32 - two worlds apart !

2003-12-27 Thread Dan Kegel
Subhobroto Sinha wrote: If you test the .lnk (DAEMON_TOOLS.LNK), you will see that the program crashes in the function: unsigned int WineWorksShortcutResolver::UnicodeToANSI(const WCHAR* wszInUnicode,unsigned int uiLen,char* szOutANSI) at the GLibc function: wcstombs(..) I'm way out of touch wit

Re: Initial feedback

2003-12-27 Thread Dan Kegel
tom alderweireldt wrote: I've just started to work my way through your Wine User Guide. I'm not a complete newbie (I've been playing with Linux for a while on a dual boot PC), but I'm certainly not a specialist. It looks like my RedHat 8.0 default installation came with Wine-20020605. I searched

Re: Implement RegFlushKey

2003-12-27 Thread Robert van Herk
First, I would like to mention that having binary compatible registry implementation is not stricly necessary for load/save compatible to Windows. We can do import on load and export on save, for example. There is also the fact that, if I understand correctly, Windows 9x has different registry

instance problem in CreateWindowEx{A,W,16}

2003-12-27 Thread Peter Oberndorfer
Hello Trying to run PEview.exe i found a problem. First i create a window with CreateWindowEx and pass 0 as instance. When trying to read the instance with GetWindowLong(hWnd,GWL_HINSTANCE) # Wine returns 0 as passed to the function. # Win 98 returns 0x40 which is what GetModuleHandle( NULL )

wchar_t on GNU and Win32 - two worlds apart !

2003-12-27 Thread Subhobroto Sinha
Hello The main problem is that wchar_t is 4 bytes on GNU, but 2 bytes on Windows ! Though Windows typedefs WCHAR as a wchar_t, but there a wchar_t is an "unsigned short", whereas on GNU it's "unsigned long" So WCHAR serialized data from Windows will get messed if we use native GNU data types (

Initial feedback

2003-12-27 Thread tom alderweireldt
Hello, I've just started to work my way through your Wine User Guide. I'm not a complete newbie (I've been playing with Linux for a while on a dual boot PC), but I'm certainly not a specialist. It looks like my RedHat 8.0 default installation came with Wine-20020605. I searched for the check &

Re: Key exist query in registry

2003-12-27 Thread Brett I. Holcomb
I can't tell you off the top of my head since it's been a while since I did any Windows work. However, you might check the Installshield site docs for REG functions. They have a bunch that you call to query the registry and are modeled on the MS ones. If I remember correctly MS C has them als

Re: Key exist query in registry

2003-12-27 Thread Zimler Attila
Zimler Attila wrote: Hi List, Can somebody help me in what is the standard way to query if a key exists in the registry? I try to implement addig new key in regedit. Attila . Hi :) I received a mail which tries to explain how windows do this. Thanks for it. To make things clear - my questio

Re: Implement RegFlushKey

2003-12-27 Thread Shachar Shemesh
Gregory M. Turner wrote: On Saturday 27 December 2003 09:23 am, Shachar Shemesh wrote: Mike Hearn wrote: This implementation is a little inefficient but without using a random access binary db as Windows does (which I am not going to advocate) it's the best we can do. Ok, I'm going

Re: Implement RegFlushKey

2003-12-27 Thread Gregory M. Turner
On Saturday 27 December 2003 09:23 am, Shachar Shemesh wrote: > Mike Hearn wrote: > >This implementation is a little inefficient but without using a random > >access binary db as Windows does (which I am not going to advocate) it's > >the best we can do. > > Ok, I'm going to be flamed for this, but

Key exist query in registry

2003-12-27 Thread Zimler Attila
Hi List, Can somebody help me in what is the standard way to query if a key exists in the registry? I try to implement addig new key in regedit. Attila

Mouse cursor doesn't switch correctly...

2003-12-27 Thread Robert van Herk
Hi folks, I may be asking for a needle in the haystack, but: While playing Warcraft III under Wine, I noticed something odd. Warcraft uses both a hand as a mouse cursor as a target (circle with cross in the middle) icon. In ordinary Win32, these two seem to switch. Under wine, however, only th

Re: Implement RegFlushKey

2003-12-27 Thread Shachar Shemesh
Dmitry Timoshkov wrote: "Shachar Shemesh" <[EMAIL PROTECTED]> wrote: This is a request to understand, not a suggestion (yet?). Why not use a general purpose DB system? (postgresql, mysql, whatever) After all, the registry is just a tree shaped database. We can do that using standard SQL, and

Re: FindWindow should not match against partial names

2003-12-27 Thread Eric Pouech
Mike Hearn wrote: -if (GetWindowTextW( list[i], buffer, len ) && !strcmpiW( buffer, title )) break; a simpler fix would be to use len + 1 instead of len here. A+ -- Eric Pouech

Re: Implement RegFlushKey

2003-12-27 Thread Dmitry Timoshkov
"Shachar Shemesh" <[EMAIL PROTECTED]> wrote: > This is a request to understand, not a suggestion (yet?). > Why not use a general purpose DB system? (postgresql, mysql, whatever) > After all, the registry is just a tree shaped database. We can do that > using standard SQL, and fall back to our cu

Re: Implement RegFlushKey

2003-12-27 Thread Shachar Shemesh
Mike Hearn wrote: This implementation is a little inefficient but without using a random access binary db as Windows does (which I am not going to advocate) it's the best we can do. Ok, I'm going to be flamed for this, but I'm going to go ahead and ask. This is a request to understand, not a s

Running a game that wants 32bit colour depth?

2003-12-27 Thread Mike Hearn
Hi, This is probably and FAQ but I have a game here that bails on startup saying that I should change my colour depth to 32 bits. Problem is, X has no concept of this colour depth. How does that work? thanks -mike

Re: Status ToDo's

2003-12-27 Thread Eric Pouech
[DirectSound] - Hardware accelerated direct sound capture driver support using the Windows CE2 HAL API - 3D buffer support in software is present but incomplete. - 3D buffer hardware support - Sound effects on buffers - Capture effects - Full duplex support is stubbed out