Re: Help needed to get the application work for native linuxeditors

2004-02-27 Thread saravanan
Hi, Can you tell me where I can get the help on X APIs. I am very new to Linux programming. I feel that replacing windows GetFocus API Postmessage API with that of Linux APIs might work. Saravanan - Original Message - From:

Re: Help needed to get the application work for native linuxeditors

2004-02-27 Thread Shachar Shemesh
saravanan wrote: Hi, Can you tell me where I can get the help on X APIs. I am very new to Linux programming. I feel that replacing windows GetFocus API Postmessage API with that of Linux APIs might work. Saravanan Man, I feel old

Re: RPC Update Patch

2004-02-27 Thread Mike Hearn
On Thu, 26 Feb 2004 23:16:23 -0600, Gregory M. Turner wrote: They are actually pretty well-documented on MSDN: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/rpc_ndr_format_strings.asp Looks like a lot of work, Robert; thanks for your efforts. Hmm, interesting. I

Re: Help needed to get the application work for native linuxeditors

2004-02-27 Thread Mike Hearn
On Fri, 27 Feb 2004 15:29:30 +0530, saravanan wrote: Hi, Can you tell me where I can get the help on X APIs. I am very new to Linux programming. I feel that replacing windows GetFocus API Postmessage API with that of Linux APIs might work. The man pages are a good start, here is the

Re: Authors.c Won't Compile

2004-02-27 Thread Hans Leidekker
On Friday 27 February 2004 03:42, Robert Shearman wrote: I can't compile authors.c due to some encoding issue with sed. I can generate the authors.c file fine on the command line, but the same command in the Makefile won't generate compilable code due to it terminating the string constant

RE: Authors.c Won't Compile

2004-02-27 Thread Robert Shearman
Hans Leidekker wrote: On Friday 27 February 2004 03:42, Robert Shearman wrote: I can't compile authors.c due to some encoding issue with sed. I can generate the authors.c file fine on the command line, but the same command in the Makefile won't generate compilable code due to it

Re: Authors.c Won't Compile

2004-02-27 Thread Hans Leidekker
On Friday 27 February 2004 13:07, Robert Shearman wrote: $ echo $LANG en_GB.UTF-8 $ echo $LC_ALL $ LC_ALL=C sed -e '1,2d' -e 's/\(.*\)/ \\1\,/' ../../AUTHORS | grep Ove Ove K\x{}ven, $ sed -e '1,2d' -e 's/\(.*\)/ \\1\,/' ../../AUTHORS | grep Ove Ove K,\x{}ven Right, my

RE: Authors.c Won't Compile

2004-02-27 Thread Robert Shearman
Hans Leidekker wrote: On Friday 27 February 2004 13:07, Robert Shearman wrote: $ echo $LANG en_GB.UTF-8 $ echo $LC_ALL $ LC_ALL=C sed -e '1,2d' -e 's/\(.*\)/ \\1\,/' ../../AUTHORS | grep Ove Ove K\x{}ven, $ sed -e '1,2d' -e 's/\(.*\)/ \\1\,/' ../../AUTHORS | grep

Re: winemaker: use winegcc

2004-02-27 Thread Francois Gouget
On Fri, 27 Feb 2004, Dimitrie O. Paun wrote: [...] @@ -801,7 +753,7 @@ $basename=~ s/\.(dll|exe)$//i; # This is the default link list of Visual Studio, except odbccp32 # which we don't have in Wine. -my @std_imports=qw(advapi32 comdlg32 gdi32 kernel32 odbc32 ole32 oleaut32

Re: Authors.c Won't Compile

2004-02-27 Thread Hans Leidekker
On Friday 27 February 2004 14:21, Robert Shearman wrote: $ LC_ALL=C sed -e '1,2d' -e 's/\(.*\)/ \\1\,/' ../../AUTHORS | grep Ove Ove K\x{}ven, I'm lost as to where the \x{} comes from (is it grep?), but as such this looks like a valid C string. So it should compile if this is

Re: winemaker: use winegcc

2004-02-27 Thread Dimitrie O. Paun
On Fri, 27 Feb 2004, Francois Gouget wrote: Does winegcc systematically link applications and dlls to advapi32, comdlg32, etc? How does one do if one does not want to link with gdi32 for instance? Yes, it does, those are the defaults for MinGW. More specifically, all apps are linked by

Re: build: avoid Unix file on MinGW

2004-02-27 Thread Lionel Ulmer
On Fri, Feb 27, 2004 at 09:19:08AM -0500, Dimitrie O. Paun wrote: BTW, why do we need the {GLU32,GLUT32,OPENGL}FILES cases? Should those just be listed under X files? And shouldn't we just build those, and dload() the Unix libs at run time? We need these special cases as an user can have X

Sibelius 2

2004-02-27 Thread Andrew L. Bereson
Sibelius is an app for scoring music. Sibelius 1 runs fine with wine. Sibelius 2 crashes on startup. When it crashes there is no useful message, only Unhandled exception. Using winedbg I have found that Sibelius appears to be following a NULL pointer. I haven't yet managed to track down where

RE: Authors.c Won't Compile

2004-02-27 Thread Robert Shearman
Hans Leidekker wrote: On Friday 27 February 2004 14:21, Robert Shearman wrote: $ LC_ALL=C sed -e '1,2d' -e 's/\(.*\)/ \\1\,/' ../../AUTHORS | grep Ove Ove K\x{}ven, I'm lost as to where the \x{} comes from (is it grep?), but as such this looks like a valid C string.

Re: catching first chance exception question

2004-02-27 Thread Eric Pouech
Robert Reif a écrit : I'm looking at how windows deals with invalid parameters in some of the winmm functions and it raises some questions. Sometimes they will check the parameters and return an error code and sometimes they will let a bad parameter cause a first-chance exception and catch it and

Re: implement fixme in CreateAcceleratorTable

2004-02-27 Thread Dmitry Timoshkov
Pabs [EMAIL PROTECTED] wrote: ChangeLog Added some checks to CreateAcceleratorTableA/W (removes fixmes) IMO it's better to use if (!MapVirtualKeyW(lpaccel[i].key, 0)) { WARN(Invalid VK\n); SetLastError(ERROR_INVALID_PARAMETER); return NULL; } for a check whether VK is a valid

Re: implement fixme in CreateAcceleratorTable

2004-02-27 Thread Pabs
On Sat, 2004-02-28 at 09:46, Dmitry Timoshkov wrote: Pabs [EMAIL PROTECTED] wrote: ChangeLog Added some checks to CreateAcceleratorTableA/W (removes fixmes) IMO it's better to use if (!MapVirtualKeyW(lpaccel[i].key, 0)) { WARN(Invalid VK\n);

Re: RPC Update Patch

2004-02-27 Thread Dan Kegel
On Thu, 26 Feb 2004 23:16:23 -0600, Gregory M. Turner wrote: They are actually pretty well-documented on MSDN: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/rpc_ndr_format_strings.asp Looks like a lot of work, Robert; thanks for your efforts. Hmm, interesting. I wonder