Re: [winegcc06] Delayed import

2003-08-14 Thread Dimitrie O. Paun
On August 13, 2003 10:08 pm, Richard Cohen wrote: --- tools.5/winegcc.c 2003-08-14 00:55:07.0 +0100 +++ tools/winegcc.c 2003-08-14 01:21:41.0 +0100 @@ -193,7 +193,8 @@ } argv[j] = 0; break; -

Re: [winegcc06] Delayed import

2003-08-14 Thread Dimitrie O. Paun
On August 14, 2003 05:30 am, Richard Cohen wrote: How about an option --delay-lib... for winewrap, and to avoid polluting winegcc's namespace, pass it via -Wl eg something like... winegcc -mwindows grotto.c -Wl,--delay-lib,comdlg32 Yes, this works better, but I'm curious why the gcc

Re: [winegcc01] Don't use BINDIR to spawn subprograms

2003-08-14 Thread Richard Cohen
Dimitrie O. Paun wrote: On August 13, 2003 09:49 pm, Richard Cohen wrote: Just using $PATH to find stuff makes it much easier to spawn off tools when running within the tree. Changelog: Remove hardcoded BINDIR paths Yes, this is a problem -- eventually we want to use these things from

Re: PATCH - msvcrt.spec exports

2003-08-14 Thread Alexandre Julliard
Steven Edwards [EMAIL PROTECTED] writes: This is untested on *nix build. With this we can build and link regression tests on Mingw again. Changelog: Casper Hornstrup chorns_at_users.sourceforge.net Fix export definition _onexit and atexit. This is wrong, _onexit and atexit are functions,

Re: wine/programs/regedit regproc.h regproc.c rege ...

2003-08-14 Thread Vincent Béron
Le mer 06/08/2003 à 23:10, Alexandre Julliard a écrit : ChangeSet ID: 8934 CVSROOT: /home/winehq/opt/cvs-commit Module name: wine Changes by: [EMAIL PROTECTED] 2003/08/06 22:10:13 Modified files: programs/regedit: regproc.h regproc.c regedit.c Makefile.in

Re: Small Winecfg win version patch

2003-08-14 Thread Vincent Béron
Le jeu 14/08/2003 14:03, root a crit : This patch adds Windows 2k3 to the winecfg program. -- E. C. F. Wolff Please send it to wine-patches if it is for inclusion, and also in unified format (diff -u, or equivalent for cvs). Vincent

Re: [winegcc03] winewrap can handle the default output name

2003-08-14 Thread Richard Cohen
Dimitrie O. Paun wrote: The reason I've handled it in winegcc rather than winewrap is that this seems to be a (historical) feature that's specific to gcc, and there doesn't seem to be any reason to have such a feature perpetuated in winewrap. winegcc - gcc, winewrap-ld $ man ld ... -o

Small Winecfg win version patch

2003-08-14 Thread root
This patch adds Windows 2k3 to the winecfg program. -- E. C. F. Wolff Note: Based on Beron's version patch for version.c Index: properties.c === RCS file: /home/wine/wine/programs/winecfg/properties.c,v retrieving revision 1.2

Cybersquat ?

2003-08-14 Thread PETREOLLE Sylvain
I noticed a curious thing when trying to access the AppDB today. Using IE (didnt make test with other browser), entering appdb.winehq.org without the htpp:// takes me to a site called http://appdb.winehq.org.com;. Has someone of the wine team done anything to own this URL ?

Re: Small cleanup

2003-08-14 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: Sorry, I don't quite understand: these defines are present only when compiling user32. Now, how do we know what defines MS uses to compile their user32? How can this ever be relevant to us? We know because the defines are used in the Microsoft

winevdm: can't exec

2003-08-14 Thread Dominik Strasser
Hi, trying to run the game demo of Charlie's Angels which can be found here: http://www.gamesdomain.com/demos/demo/1861.html I am running into a strange problem. The demo is a NE binary, so winevdm is called. But is has the 32-bit-flag set, so MODULE_LoadModule16 returns handle 21 (Win32 binary).

Re: propset.c: In function `DSPROPERTY_EnumerateW

2003-08-14 Thread Peter Birch
Ah, thank you and also thanks for the explanation. I work in C++ so much that I forgot that you can't create variables just anyware with older C compilers. Duane Clark wrote: Peter Birch wrote: The latest cvs code (08/06/2003 20:45:00 pst) will not compile - I get the following error: gcc

Re: wine in the press :)

2003-08-14 Thread Joerg Mayer
On Tue, Aug 05, 2003 at 11:49:54AM -0400, Tom wrote: I just seen this on /. I though I would post the link here. http://www.eweek.com/article2/0,3959,1210083,00.asp Brooks said it took some time to convince Disney attorneys that he wanted to pay for the development of the porting solution but

Re: Implementations of WCSToMBEx and MBToWCSEx and PolyPatBlt

2003-08-14 Thread jonwil
PS... All my info was acquired via legal means (google, MSDN, WINE, google groups, posts to the WINE and ReactOS lists and so on) However, I dont take responsibility for how the people posting the info (on google, google groups, the replies to the WINE ReactOS lists and etc) got it in the

Re: Implementations of WCSToMBEx and MBToWCSEx and PolyPatBlt

2003-08-14 Thread jonwil
Please submit them as a patch, so that Alexandre can apply them to the tree like all the other patches. Unfortunatly, my linux setup (which I use for working on WINE) is currently non-functional. If someone else with a working WINE tree could turn them into a patch, that would be very very

Re: partial implementation of msi.dll

2003-08-14 Thread Gregory M. Turner
On Wednesday 06 August 2003 09:48 am, Mike McCormack wrote: Hi, This is a partial implementation of the Microsoft Installer (msi.dll). At the moment, it is capable of querying an MSI database with read only SQL queries, but can't use it to install anything. Mike Cool! But Micorosft

Re: __declspec(selectany)

2003-08-14 Thread Dan Kegel
Dimitrie O. Paun wrote: On August 6, 2003 12:12 am, Dan Kegel wrote: Silly me. For some reason I thought the builtin declarations were magic. Here's a little demo that might show the basic idea. winegcc already defines these things: gcc_argv[i++] =

Re: __declspec(selectany)

2003-08-14 Thread Dimitrie O. Paun
On 6 Aug 2003, Ove Kaaven wrote: You can try #define __declspec_selectany __attribute__((weak)) #define __declspec_whatever __attribute__((whatever)) #define __declspec(x) __declspec_##x Brilliant, thank you! -- Dimi.

Re: Implement a typelib loader cache

2003-08-14 Thread Mike Hearn
Yes, it should also be path normalized, but for some reason I remember that being more complex than I thought it'd be. Which function should I use here? There is no strcasecmpW, in shlwapi there is a function which does that (StrCmpIW or something). Should I copy/paste that into unicode.h? On

HELP with IID_XXX

2003-08-14 Thread Boaz Harrosh
There are tons of: EXTERN_C const IID_XXX all over the COM place. My Wine App compiles and links fine but when I try to run it. I get the error: /home/wine/bin/wine: cannot open builtin library for 'C:\WINDOWS\SYSTEM\wtlmdi.exe': ./wtlmdi.exe.so: undefined symbol: CLSID_HTMLDocument How

Re: question about mouse_event

2003-08-14 Thread Dimitrie O. Paun
On August 8, 2003 07:54 pm, dd jj wrote: I have ported a windows code to linux using winemaker: it works fine on windows, but doesn't work on linux, Could anyone give some comments on this problem? In what sense doesn't it work? -- Dimi.

Re: Add support for CS_NOCLOSE

2003-08-14 Thread Dmitry Timoshkov
Dmitry Timoshkov [EMAIL PROTECTED] wrote: My test under win2k shows that Windows sends WM_SYSCOMMAND/SC_CLOSE and then WM_CLOSE regardless whether CS_NOCLOSE is set or not. Wrong. Please ignore that chunk of the patch. If other parts are OK I'll resend the whole thing. -- Dmitry.

Re: Some suggestions on API database

2003-08-14 Thread Dave Miller
A few updates to this project. First, I have completed work on a script which makes an export table. That is, it's completed if noone discovers a problem or feature that should be added. This table will have all windows versions in a row across the top, and dlls in a column down the left

Re: Small cleanup

2003-08-14 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: ChangeLog Remove unused defines. The idea is to have the same defines as Windows; even though we don't actually need them at this point we might want to someday. -- Alexandre Julliard [EMAIL PROTECTED]

Re: can't redirect stdout?!

2003-08-14 Thread Dan Kegel
Eric Pouech wrote: Dan Kegel wrote: OK, so with the normal X11 driver, you can no longer redirect stdout from commandline apps under Wine; the output just vanishes if you try to send it to a file. it works just fine here (at least for simple programs). does your program involves the creation of a

Re: Wine history draft

2003-08-14 Thread Duane Clark
Brian Vincent (C) wrote: I put together the following: http://users.theshell.com/~vinn/wine-history.html ... Comments / suggestions / criticisms? Some interesting postings from the beginnings of Wine were collected and reposted last year. They might be worth including or being referenced in

Seti@home

2003-08-14 Thread [EMAIL PROTECTED]
What about having a wine seti team?

Re: status of Kazaalite crash patch ?

2003-08-14 Thread Dimitrie O. Paun
On August 13, 2003 09:25 am, wim delvaux wrote: Read on the devel archive (using search) about crashing Kazaalite .. I can confirm. I have the same problem since 200306 version. Just upgraded to 200307 but still crashes. What's the status of this problem ? If you want people to help you

Re: __declspec(selectany)

2003-08-14 Thread Boaz Harrosh
Dimitrie O. Paun wrote: On August 6, 2003 01:14 am, Dan Kegel wrote: I looked at http://cvs.winehq.com/cvsweb/wine/tools/winegcc.c?rev=1.16 and see you don't have #define selectany weak That's right, it doesn't. Think winegcc should do -Dselectany=weak? I don't know -- it's easy

Re: can't redirect stdout?!

2003-08-14 Thread Eric Pouech
Dan Kegel wrote: OK, so with the normal X11 driver, you can no longer redirect stdout from commandline apps under Wine; the output just vanishes if you try to send it to a file. it works just fine here (at least for simple programs). does your program involves the creation of a child process,

Re: winver

2003-08-14 Thread Shachar Shemesh
Vincent Bron wrote: Le ven 01/08/2003 13:02, Shachar Shemesh a crit : [EMAIL PROTECTED] wrote: I've noticed that wine doesn't yet seem to have a winver option for windows server 2003, I suppose it a trivial thing to implement, at least by seeing how quickly this was done for windows xp.

Re: wine in the press :)

2003-08-14 Thread Mike McCormack
They are using standard Crossover Office version 2.0.1. Mike Not from me. My questionning is more on why does he mention the GPL, when Wine is under the LGPL... (I know you can transfer any copy of a LGPL code to GPL, as per section 3 of the LGPL) Do they use the standard CrossOffice, or a

Re: Does anyone have prototypes for the following user32.dll functions?

2003-08-14 Thread BiGgUn
As far as i know : CascadeChildWindows Actaully mapped to CascadeChildWindows16 in Wine DdeGetQualityOfService You can simulate its supposed behaviour by calling DdeSetQualityOfService. Just provide a pointer to a SECURITY_QUALITY_OF_SERVICE structure as third argument for

question about mouse_event

2003-08-14 Thread dd jj
Hello, I have ported a windows code to linux using winemaker: it works fine on windows, but doesn't work on linux, Could anyone give some comments on this problem? THanks. Here's the code. #include windows.hint APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int

WCSToMBEx and MBToWCSEx

2003-08-14 Thread Jonathan Wilson
I have come up with some info on these 2 (previously undocumented) calls: DWORD STDCALL WCSToMBEx(WORD CodePage,LPWSTR UnicodeString,DWORD UnicodeSize,LPSTR *MBString,DWORD MBSize,BOOL Allocate); DWORD STDCALL MBToWCSEx(WORD CodePage,LPSTR MBString,DWORD MBSize,LPWSTR *UnicodeString,DWORD

Re: wrong keyboard layout

2003-08-14 Thread Dmitry Timoshkov
Phil Krylov [EMAIL PROTECTED] wrote: With the current CVS, I can't get any Cyrillic input with any setting of LANG: ru_RU.KOI8-R, ru_RU.UTF-8, ru_RU.CP1251, and en_US.UTF-8. Only ? characters are input. Even if you set LC_ALL=ru_RU.KOI8-R? A good test is to run 'xev' and see whether it works

Re: Status Update#2 Again

2003-08-14 Thread Dmitry Timoshkov
Tom [EMAIL PROTECTED] wrote: + liADD - RCPT4 ToDo and entries/li Sorry, didn't notice it first time: it seems that RCPT4 should actually be RPCRT4. -- Dmitry.

Re: [X11DRV] Re-add support for the 'UseXShm' config key.

2003-08-14 Thread Alexandre Julliard
Lionel Ulmer [EMAIL PROTECTED] writes: Well, sometimes, in some rare debugging cases, it's useful to have it, yeah. But is it useful enough to justify exposing it, documenting it, explaining to users they shouldn't touch it, etc.? IOW do you use it often enough that it's painful for you to

Re: cab_G_00-pre1 (RFC)

2003-08-14 Thread Alexandre Julliard
Gregory M. Turner [EMAIL PROTECTED] writes: Would love to hear if I have not done things in a properly SETUPAPI way, i.e., am I supposed to be performing certain logging or memory allocation rituals, anything like that? One ritual is that you should not use msvcrt from other dlls, this will

Re: winver

2003-08-14 Thread Vincent Béron
Le mer 13/08/2003 11:31, Shachar Shemesh a crit : Windows 2003 comes in three flavours, apparently. Web edition, Standard Edition and Enterprise Edition. All three are considered Windows 2003 Server. There is no Windows 2003 Pro, Home, Workstation or whatever. In that respect, yes, it does

Re: wrong keyboard layout

2003-08-14 Thread Dmitry Timoshkov
Phil Krylov [EMAIL PROTECTED] wrote: DT Could you try to investigate what really returns XmbLookupString for DT UTF-8 locale? It returns 0. What version of XFree86 are you using? Could you send me a log using current cvs: +x11drv,+event,+key,+keyboard? -- Dmitry.

Re: Threading experts?

2003-08-14 Thread Mike Hearn
I assume you tried both with NPTL support compiled in and without, right? Having said that I've also seen wierd freezes inside pthreads, despite most other apps working correctly (with rhymbox in particular). So, there might be some other strange issue here. I'll try an strace on RB to see if

RE: Threading experts?

2003-08-14 Thread Ann and Jason Edmeades
vvv What is this, and why is it getting the signal [pid 394] --- SIGRTMIN (Unknown signal 32) @ 0 (0) --- [pid 394] sigreturn() = ? (mask now []) Perhaps an earlier sigprocmask erroneously leaves the signal unmasked? I thought that too, but it didnt appear so, but you have

Wine CVS Build Error

2003-08-14 Thread Casey McGinty
I'm trying to get Wine and/or Winex to build on my system with no luck. I get the same error in both releases, I was hoping someone would know how to fix this, or what I am doing wrong. I'm using GCC 3.2.3 and kerenl 2.4.21 on a Linux From Scratch distribution. The error output I get in Wine:

Re: wine/ windows/winproc.c windows/win.c windows/ ...

2003-08-14 Thread Dimitrie O. Paun
On August 12, 2003 07:50 pm, Alexandre Julliard wrote: Allocate DebugInfo field for all critical sections (based on a patch by Alex Pasadyn). Get rid of the Wine-specific CRITICAL_SECTION_INIT macro. +static CRITICAL_SECTION_DEBUG critsect_debug = +{ +0, 0, winproc_cs, +

Does anyone have prototypes for the following user32.dll functions?

2003-08-14 Thread Jonathan Wilson
All of them are exported by user32.dll from NT4SP6a CascadeChildWindows ClientThreadSetup DdeGetQualityOfService DrawCaptionTempA DrawCaptionTempW DrawFrame DrawMenuBarTemp EditWndProc FullScreenControl GetAccCursorInfo GetAppCompatFlags GetInputDesktop GetInternalWindowPos GetProgmanWindow

Re: __declspec(selectany)

2003-08-14 Thread Dimitrie O. Paun
On August 6, 2003 01:14 am, Dan Kegel wrote: I looked at http://cvs.winehq.com/cvsweb/wine/tools/winegcc.c?rev=1.16 and see you don't have #define selectany weak That's right, it doesn't. Think winegcc should do -Dselectany=weak? I don't know -- it's easy enough to add, but it's also

Re: Add support for CS_NOCLOSE

2003-08-14 Thread Dmitry Timoshkov
Alexandre Julliard [EMAIL PROTECTED] wrote: I think it's much better, drawing directly will cause a lot of problems, especially when called from another thread context. Unless you really have an app that depends on not getting a WM_NCPAINT here I see no reason not to use the normal

Re[2]: wrong keyboard layout

2003-08-14 Thread Phil Krylov
Hello Dmitry, Tuesday, August 12, 2003, 3:23:14 PM, you wrote: DT Phil Krylov [EMAIL PROTECTED] wrote: With the current CVS, I can't get any Cyrillic input with any setting of LANG: ru_RU.KOI8-R, ru_RU.UTF-8, ru_RU.CP1251, and en_US.UTF-8. Only ? characters are input. DT Even if you set

Re: wine/programs/regedit regproc.h regproc.c rege ...

2003-08-14 Thread Dustin Navea
--- Vincent Béron [EMAIL PROTECTED] wrote: Le jeu 14/08/2003 à 15:36, Dustin Navea a écrit : if (action == ACTION_UNDEF) { if (*s) action = ACTION_ADD; return FALSE; } This won't do the same thing (the return statement will always be

Re: wine/ scheduler/pthread.c dlls/ntdll/sysdeps.c

2003-08-14 Thread Rein Klazes
On Tue, 12 Aug 2003 13:59:13 -0500, you wrote: ChangeSet ID: 8958 CVSROOT: /home/winehq/opt/cvs-commit Module name: wine Changes by: [EMAIL PROTECTED] 2003/08/12 13:59:13 Modified files: scheduler : pthread.c dlls/ntdll : sysdeps.c Log message:

GTA3 crash :( -- RedHat 9

2003-08-14 Thread root
Hey, After been away too long I'm back again :). Thirst thing what I did was checking that GTA3 still worked. But it didn't :( After it produced a lot of CheckDeviceMultiSampleType fixme's it produced this screen :(: fixme:d3d:IDirect3D8Impl_CheckDeviceMultiSampleType (0x4a7d0460)-(Adptr:0,

Re: Some advapi32 stubs

2003-08-14 Thread Stefan Leichter
On Tuesday 12 August 2003 07:06, Mike McCormack wrote: ChangeLog: * stubs for advapi32 functions InitiateSystemShutdownEx, SetEntriesInAcl and SetNamedSecurityInfo +@ stdcall InitiateSystemShutdownExA(wstr wstr long long long long) This looks wrong to me (wstr as parameter of A function) Bye

Re: Accept SIZE_MAXIMIZED as one of statuses of MDI windows

2003-08-14 Thread Alexandre Julliard
Dmitry Timoshkov [EMAIL PROTECTED] writes: @@ -1070,9 +1072,10 @@ STATUSBAR_WMSize (STATUSWINDOWINFO *info width = parent_rect.right - parent_rect.left; x = parent_rect.left; y = parent_rect.bottom - infoPtr-height; -MoveWindow (infoPtr-Self, parent_rect.left, -

bug in dlls/dplayx/version.rc drectx gurus please read.

2003-08-14 Thread [EMAIL PROTECTED]
I (Think) I've found a bug in dlls/dplayx/version.rc. As you can see from this bug report I submitted http://bugs.winehq.com/show_bug.cgi?id=1299 a few moths ago I discovered that m$ age of empires trial didn't run any more. Someone did some testing, and the result was that version 1.2 of

Re: wine in the press :)

2003-08-14 Thread Dustin Navea
--- Hetz Ben Hamo [EMAIL PROTECTED] wrote: On Tuesday 05 August 2003 22:22, Dustin Navea wrote: I'll say, Disney porting several windows apps (including, if i read it correctly, an adobe app or two) to linux is a big step forward... Cant wait to see what's next from them.. They didn't.

Re: Cybersquat ?

2003-08-14 Thread Jon Bright
Hi, PETREOLLE Sylvain wrote: I noticed a curious thing when trying to access the AppDB today. Using IE (didnt make test with other browser), entering appdb.winehq.org without the htpp:// takes me to a site called http://appdb.winehq.org.com;. Has someone of the wine team done anything to own

bidi support test program

2003-08-14 Thread Shachar Shemesh
Hi all, Attached is a simple program to test whether the Win32 API supports BiDi reordering. Some packagers asked me for such a utility in the past, so they can make sure that their inclusion of ICU worked, and without forcing them to actually understand languages that are all Hebrew to them.

Re: Status Update - Lostwages

2003-08-14 Thread Dmitry Timoshkov
Tom [EMAIL PROTECTED] wrote: Here is a small update to the status pages. + liRemove - Some of the bullets from DierctX section/li an apparent typo above -- Dmitry.

Re: Small cleanup

2003-08-14 Thread Dmitry Timoshkov
Dimitrie O. Paun [EMAIL PROTECTED] wrote: The idea is to have the same defines as Windows; even though we don't actually need them at this point we might want to someday. Sorry, I don't quite understand: these defines are present only when compiling user32. Now, how do we know what

Threading experts?

2003-08-14 Thread Jason Edmeades
Hi, I seem to have found a recreatable threading problem and I am not convinced it it wines fault either. Are there any experts here who want to offer any advice on where to go to persue this please? Problem: 'wine appname' hangs when it creates one of its threads. The hang is inside

Re: GTA3 crash :( -- RedHat 9

2003-08-14 Thread Lionel Ulmer
However, try commenting out the line in directx.c : object-visInfo = glXChooseVisual(object-display, DefaultScreen(object-display), dblBuf); Basically, for this to work reliably, you have three choices : - do a full rewrite of the Wine windowing code to be able to somehow 'recreate' on the

Re: wrong keyboard layout

2003-08-14 Thread Dmitry Timoshkov
Phil Krylov [EMAIL PROTECTED] wrote: XFree86 -version reports: XFree86 Version 4.3.0 Release Date: 27 February 2003 X Protocol Version 11, Revision 0, Release 6.6 Build Operating System: Linux 2.4.22_pre2-gss i686 [ELF] Build Date: 23 July 2003 The log you asked for is attached. It's

Unable to print from wine

2003-08-14 Thread Peter Stokes
Hi I downloaded the Mandrake wine-20030709-mdk9.1.i586.rpm and my main issue is still printing from an old 16 bit app. The previous MDK version 20030618 allowed me to pick a printer and select a print format. It then proceeded to print to my CUPS default printer with some of the information it

Re[2]: wrong keyboard layout

2003-08-14 Thread Phil Krylov
Hello Shachar, Tuesday, August 12, 2003, 12:15:51 AM, you wrote: SS Dmitry Timoshkov wrote: BTW, what wrong happens if your keyboard was misdetected? In the current CVS all national characters should work fine regardless what keyboard layout was detected. Is that only a warning message which

Question about dlls/dinput/mouse/main.c

2003-08-14 Thread Michael Schlüter
Hi, I've a small problem with the game Star Trek Elite Force II Single Player Demo. The mouse button event seems not to be send back to the game. After changing the return value of dinput_mouse_hook in dlls/dinput/mouse/main.c to return always CallNextHookEx( This-hook, code, wparam, lparam );

Re: [winegcc03] winewrap can handle the default output name

2003-08-14 Thread Dimitrie O. Paun
On August 13, 2003 09:55 pm, Richard Cohen wrote: Default name that mingw uses is a.exe This also stops winewrap from segfaulting when passed no arguments. Changelog Handle default linker output name (a.exe) in winewrap The reason I've handled it in winegcc rather than winewrap is

Re: wrong keyboard layout

2003-08-14 Thread Raul
Dmitry Timoshkov wrote: Shachar Shemesh [EMAIL PROTECTED] wrote: There is one thing that still bothers me. When using right-win for group toggle, I get a ` printed when switching from group 0 to group 1, and ; when switching from group 1 to group 0. Otherwise, everything works fine. This does

Re: Status Update - Lostwages

2003-08-14 Thread Tom
Dmitry Timoshkov wrote: Tom [EMAIL PROTECTED] wrote: Here is a small update to the status pages. + liRemove - Some of the bullets from DierctX section/li an apparent typo above Please explain where you see a typo. tom

Re: __stdcall__ pointer to member function

2003-08-14 Thread Boaz Harrosh
OK for now I can use -mrtd on the GCC command-line. This will render all code to use __stdcall, including the function pointers. This can be dangerous with external libraries that where not compiled with this switch and have no explicit function prototype. - Quick browse of GCC stdlib headers

Re: WCSToMBEx and MBToWCSEx

2003-08-14 Thread BiGgUn
Hi Did you find an app that requires these functions ? If so, which one ? Stephan

Re: dlopen libncurses.so in wineconsole

2003-08-14 Thread Eric Pouech
Mike McCormack wrote: This patch doesn't include changes to configure. Run autoconf to regenerate it... several comments to this needed patch: 1/ in configure.ac why not checking also for curses if ncurses isn't present ? BTW, you can also remove the ncurses library lookup in configure.ac, we

Re: wrong keyboard layout

2003-08-14 Thread Shachar Shemesh
Dmitry Timoshkov wrote: Shachar Shemesh [EMAIL PROTECTED] wrote: There is one thing that still bothers me. When using right-win for group toggle, I get a ` printed when switching from group 0 to group 1, and ; when switching from group 1 to group 0. Otherwise, everything works fine. This

Re[3]: wrong keyboard layout

2003-08-14 Thread Phil Krylov
Hello, Tuesday, August 12, 2003, 7:14:16 PM, I wrote: PK Ah, it must be my fault - I used LANG instead of LC_ALL. Using PK LC_ALL=ru_RU.UTF-8 and your latest patch (ignoring XK_ModeSwitch), my PK keyboard started working perfectly. sorry, i made a mistake. ru_RU.KOI8-R works, while ru_RU.UTF-8

Re: [winegcc06] Delayed import

2003-08-14 Thread Richard Cohen
Dimitrie O. Paun wrote: On August 13, 2003 10:08 pm, Richard Cohen wrote: This is not cool -- winegcc is supposed to be command line compatible with mingw-gcc, and -d conflicts with gcc's -d: Having the option in winewrap is OK, there we control the options. If this feature is useful in Windows,

Re: wine/programs/regedit regproc.h regproc.c rege ...

2003-08-14 Thread Dustin Navea
--- Vincent Béron [EMAIL PROTECTED] wrote: Le mer 06/08/2003 à 23:10, Alexandre Julliard a écrit : ChangeSet ID: 8934 CVSROOT:/home/winehq/opt/cvs-commit Module name:wine Changes by: [EMAIL PROTECTED] 2003/08/06 22:10:13 Modified files: programs/regedit:

Re: question about mouse_event

2003-08-14 Thread dd jj
Hello, On Linux (Redhat 9.0, wine-2003-06-18), when I run this program under wine: %./mouse The result is supposed to "left button of mouse is pressed then released", but here my result is "the cursor moves to the most left-up conner of the screen". I tried to run mouse.exe generated by Visual

Re: wine/programs/regedit regproc.h regproc.c rege ...

2003-08-14 Thread Vincent Béron
Le jeu 14/08/2003 15:36, Dustin Navea a crit : --- Vincent Bron [EMAIL PROTECTED] wrote: @@ -153,6 +153,9 @@ } } +if (*s action == ACTION_UNDEF) +action = ACTION_ADD; + if (action == ACTION_UNDEF) return FALSE; IMHO I think

Re: GTA3 crash :( -- RedHat 9

2003-08-14 Thread Jason Edmeades
However, try commenting out the line in directx.c : object-visInfo = glXChooseVisual(object-display, DefaultScreen(object-display), dblBuf); This seems to work ok on some (my!) drivers, but I know others have had problem with it. Basically, for this to work reliably, you have three choices

Re: wrong keyboard layout

2003-08-14 Thread Dmitry Timoshkov
Raul [EMAIL PROTECTED] wrote: couple years ago, when i sent the estonian layout patch, worked fine put now im using redhat 9 and detects wrong layout (Latin American keyboard layout) is there some changes that breaks the layout or im making something wrong? The changes have been made on the

Re: Cybersquat ?

2003-08-14 Thread Dustin Navea
just another web portal playing on typos... i dont have that problem tho.. i can type it in ie without the http:// and it takes me to the appdb --- PETREOLLE Sylvain [EMAIL PROTECTED] wrote: I noticed a curious thing when trying to access the AppDB today. Using IE (didnt make test with

Re: Small cleanup

2003-08-14 Thread Dimitrie O. Paun
On Thu, 7 Aug 2003, Alexandre Julliard wrote: The idea is to have the same defines as Windows; even though we don't actually need them at this point we might want to someday. Sorry, I don't quite understand: these defines are present only when compiling user32. Now, how do we know what defines

Re: Implementations of WCSToMBEx and MBToWCSEx and PolyPatBlt

2003-08-14 Thread Dimitrie O. Paun
On August 13, 2003 10:10 pm, Jonathan Wilson wrote: Here are the implementations of those functions I did for ReactOS. (and no, I didnt use disassembler on them this time :) I am licencing them under whatever licence I need to in order for them to go into WINE (if the WINE team wants them that

Re: Other winefile fixes

2003-08-14 Thread Martin Fuchs
Hello Dimitrie, Use __WINE instead of _WINE_, _WIN32 Why do we need to know that we're running under Wine in so many places? I think we have fewer tests for __WINE__ in a huge lib like wxWindows than we have in winefile! The #ifdef directives are mainly because of the additional

Re: GTA3 crash :( -- RedHat 9

2003-08-14 Thread Lionel Ulmer
On Thu, Aug 14, 2003 at 10:02:55PM +0100, Jason Edmeades wrote: This seems to work ok on some (my!) drivers, but I know others have had problem with it. Well, your driver must either 1) be less picky on visual consistency or 2) have a stencil associated to the default double-buffered visual...

Fwd: Re: status of Kazaalite crash patch ?

2003-08-14 Thread Dimitrie O. Paun
-- Dimi. ---BeginMessage--- On Thursday 14 August 2003 06:44, Dimitrie O. Paun wrote: On August 13, 2003 09:25 am, wim delvaux wrote: Read on the devel archive (using search) about crashing Kazaalite .. I can confirm. I have the same problem since 200306 version. Just upgraded to 200307

Writes to config file on the fly? (Was: Re: GTA3 crash :( -- RedHat 9)

2003-08-14 Thread Dustin Navea
--- Lionel Ulmer [EMAIL PROTECTED] wrote: On Thu, Aug 14, 2003 at 10:02:55PM +0100, Jason Edmeades wrote: I dont like adding configuration options for things which should be transparent to the user. I'll have to look into this again in the future, but in the meantime I might put code to

Re: [X11DRV] Re-add support for the 'UseXShm' config key.

2003-08-14 Thread Lionel Ulmer
Do you actually need it? Otherwise I think we might as well remove it completely, clearly nobody depends on it since it has been broken for a long time. Well, sometimes, in some rare debugging cases, it's useful to have it, yeah. Basically, I was hunting down a GFX corruption bug and was

Re: [winegcc03] winewrap can handle the default output name

2003-08-14 Thread Dimitrie O. Paun
On August 14, 2003 04:30 am, Richard Cohen wrote: winegcc - gcc, winewrap-ld $ man ld ... -o output --output=output Use output as the name for the program produced by ld; if this option is not specified, the name a.out is used by

Re: wrong keyboard layout

2003-08-14 Thread Dmitry Timoshkov
Shachar Shemesh [EMAIL PROTECTED] wrote: I have asked you this before in private, but I fear I didn't really understand the answer. When I ran with an incorrect locale setting (en_US.utf8 instead of en_US.UTF-8), konsole would display Hebrew characters using the UTF-8 encoding.

Re: RPM for Red Hat 7.3

2003-08-14 Thread Matt Seitz
Vincent Béron wrote: Le mar 15/07/2003 à 12:27, William M. Quarles a écrit : Is it possible that you could continue building and distributing packages for Red Hat 7.3? I initially planned to, but one of my HD failed and I'm waiting for the replacement. Then I'll have enough HD room to do it.

Re: [resend 3rd time ] SetMenu patch

2003-08-14 Thread Alexandre Julliard
Oleg Prokhorov [EMAIL PROTECTED] writes: Cause: SetMenu was limited to update client/non-client only if window is visible, while MS Windows SetMenu updates it anyway. Changelog: SetMenu always updates client/non-client. This causes a SetWindowPos to happen during window creation, before

Re: [winegcc01] Don't use BINDIR to spawn subprograms

2003-08-14 Thread Dimitrie O. Paun
On August 13, 2003 09:49 pm, Richard Cohen wrote: Just using $PATH to find stuff makes it much easier to spawn off tools when running within the tree. Changelog: Remove hardcoded BINDIR paths Yes, this is a problem -- eventually we want to use these things from within the tree. I

Re: can't redirect stdout?!

2003-08-14 Thread Eric Pouech
Dan Kegel wrote: Eric Pouech wrote: Dan Kegel wrote: OK, so with the normal X11 driver, you can no longer redirect stdout from commandline apps under Wine; the output just vanishes if you try to send it to a file. it works just fine here (at least for simple programs). does your program

finaly vacations

2003-08-14 Thread Raphal Junqueira
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I'll be on vacation (and most of the time off line) for 2 weeks. Finaly after a lot of hard work at office (and few time for wine), some holydays. The return will be hot ;=) Best Regards, Raphael -BEGIN PGP SIGNATURE- Version: GnuPG

status of Kazaalite crash patch ?

2003-08-14 Thread wim delvaux
Hi, Read on the devel archive (using search) about crashing Kazaalite .. I can confirm. I have the same problem since 200306 version. Just upgraded to 200307 but still crashes. What's the status of this problem ? W

Re: winver

2003-08-14 Thread Shachar Shemesh
Vincent Béron wrote: Le mer 13/08/2003 à 01:40, Shachar Shemesh a écrit : Windows 2003 Standard Edition (let me know if you want another edition): Majour Version: 5 Minor Version: 2 Build Number: 3790 Platform ID: 2 CSDVersion empty (NULLs) ServicePackMajor: 0 ServicePackMinor: 0 Reserved:

Re: wrong keyboard layout

2003-08-14 Thread Shachar Shemesh
Dmitry Timoshkov wrote: Phil Krylov [EMAIL PROTECTED] wrote: XFree86 -version reports: XFree86 Version 4.3.0 Release Date: 27 February 2003 X Protocol Version 11, Revision 0, Release 6.6 Build Operating System: Linux 2.4.22_pre2-gss i686 [ELF] Build Date: 23 July 2003 The log you asked for

Better GNOME integration

2003-08-14 Thread Christian Neumair
When trying to use the latest Debian package I noted that there are no MIME bindings available for GNOME and that applications installed with wine are not visible in the application menu. In my opinion the first issue is really easily solvable, just three more files need to be included in the

Re: Implement a typelib loader cache

2003-08-14 Thread Alexandre Julliard
Mike Hearn [EMAIL PROTECTED] writes: ChangeLog: Implement a typelib loader cache You'll need to protect the list with a critical section. Also it's probably better to store the list directly in the typelib structure instead of allocating a separate object. -- Alexandre Julliard [EMAIL

  1   2   >