Re: Wine does not build (preloader.c, line 863, a_ptr union)

2005-06-02 Thread Mike McCormack
Ivan Gyurdiev wrote: I hate bothering the -devel list with compile errors, but they don't seem to get fixed, so I start wondering if anyone else besides me is using gcc4 at all.. preloader.c: In function is_in_preload_range: preloader.c:863: error: union anonymous has no member named a_ptr

Re: PATCH: Re: Wine does not build (preloader.c, line 863, a_ptr union)

2005-06-02 Thread Andreas Mohr
Hi, On Thu, Jun 02, 2005 at 09:10:10AM +0200, Marcus Meissner wrote: On Thu, Jun 02, 2005 at 03:22:01PM +0900, Mike McCormack wrote: Ivan Gyurdiev wrote: I hate bothering the -devel list with compile errors, but they don't seem to get fixed, so I start wondering if anyone else besides

Weirdness in the makefile

2005-06-02 Thread Scott Ritchie
Can someone explain the significance of these targets in the makefile: manpages: $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w cd dlls $(MAKE) man htmlpages: $(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/html cd dlls $(MAKE) doc-html sgmlpages:

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Andreas Mohr
Hi, On Thu, Jun 02, 2005 at 08:31:36PM +0900, Mike McCormack wrote: ChangeLog: * fixes for -Wmissing-declarations and -Wwrite-strings warnings Argh, this is what I had done recently but didn't manage to submit yet. (I told in a mail that I had done programs/ and tools/) -static char

Re: Google Summer of Code

2005-06-02 Thread Dimi Paun
On Wed, 2005-06-01 at 16:55 -0600, Brian Vincent wrote: As part of the Summer of Code, Google will be giving each project $500 for each proposal that gets accepted. Right now the Wine Party Fund is doing ok. What do you guys think about contributing $250 of the $500 back to the developer as

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Pouech Eric DMI AEI CAEN
looking at the patch, I saw something in the code that made me sick:char *audioAutoDetect(void) { [snip] char *driversFound[10];[snip] return driversFound[0];[snip] } can someone fix that broken code ?that would be another nice janitorial task to check whether this kind of error exists

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Mike McCormack
Andreas Mohr wrote: Imperfect - it should be static const char * const ignored_fstypes[] True. However I don't have enough time to rewrite all the things that annoy me... for example in winecfg, somebody has named their functions get() and put()... why not just call them g() and p() for

Re: Feasible google summer of code project?

2005-06-02 Thread Travis Watkins
On 6/2/05, Mike Hearn [EMAIL PROTECTED] wrote: [snip] - Linking Desktop/My Documents to the real locations - XDG menu support - Autorun (needs the Wine explorer work really) - Icon themes [snip] thanks -mike I could help out with the xdg menu stuff. Not with coding, but with working

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Dimi Paun
From: Pouech Eric DMI AEI CAEN [EMAIL PROTECTED] looking at the patch, I saw something in the code that made me sick: char *audioAutoDetect(void) { [snip] char *driversFound[10]; [snip] return driversFound[0]; [snip] } can someone fix that broken code ? Yeah, it's not pretty,

Re: Copy Protection WINE

2005-06-02 Thread Ivan Leo Puoti
Jonathan Wilson wrote: From what I understand, there are 3 ways to do copy protection in WINE (at least for copy protection that needs a kernel driver to work): 1.Implement a WINE implementation of that kernel driver (in the same way various stock windows kernel drivers have been implemented).

Re: Feasible google summer of code project?

2005-06-02 Thread Ivan Leo Puoti
Mike Hearn wrote: If it helps any, when I started I didn't even know C, I learned it specifically in order to hack on Wine. So did I. Ivan.

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Pouech Eric DMI AEI CAEN
returning a pointer to something on the stack is something I call an error (how do you ensure that the buffer will not get overwritten by another function call ?) A+ Message du 02/06/05 15:25 De : "Dimi Paun" <[EMAIL PROTECTED]> A : [EMAIL PROTECTED], wine-devel@winehq.org Copie : Objet : Re:

Re: Google Summer of Code

2005-06-02 Thread Jacek Caban
Hello. I was talking with my cousin about Google Summer of Code and he is interesting in working on Wine. The problem is what he could do. He'd like to work on a translation tool with UI for rc files (say winetranslator). AFAIK there is no open source project like this and, as the state of

Re: DCOM and Google's Summer of Code

2005-06-02 Thread jet
Hello! I'm in trouble trying to estimate effort needed to implement marshalling interoperable with MS. Is it a right task for 2-2.5 months of Google's Summer of Code? I think DCOM is way above student level. There might be some other tasks. Ciao, Marcus

Re: Wine does not build (preloader.c, line 863, a_ptr union)

2005-06-02 Thread Hans Kristian Rosbach
On Wed, 2005-06-01 at 22:26 -0400, Ivan Gyurdiev wrote: I hate bothering the -devel list with compile errors, but they don't seem to get fixed, so I start wondering if anyone else besides me is using gcc4 at all.. preloader.c: In function is_in_preload_range: preloader.c:863: error: union

safedisc stuff

2005-06-02 Thread Ivan Leo Puoti
Hi guys, Mike Hearn asked me to send the work in progress stuff, so here it is (some stuff has been removed for legal reasons, so you can't run it in a debugger). Some of it sucks (See QueryServiceStatus for the worst hack ever, that doesn't even usually work), but the design should be more

dlls/kernel/tests/locale.c warning regression

2005-06-02 Thread Gerald Pfeifer
The following change to dlls/kernel/tests/locale.c revision 1.36 date: 2005/05/31 09:30:46; author: julliard; state: Exp; lines: +4 -4 Mike McCormack [EMAIL PROTECTED] Some warning fixes for the regression tests. actually doesn't fix any warning on FreeBSD 4.x, but adds the following

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Francois Gouget
On Thu, 2 Jun 2005, Pouech Eric DMI AEI CAEN wrote: returning a pointer to something on the stack is something I call an error (how do you ensure that the buffer will not get overwritten by another function call ?) It's not returning a pointer to something on the stack. It is returning

Re: fixes for -Wmissing-declarations and -Wwrite-strings warnings

2005-06-02 Thread Dimi Paun
returning a pointer to something on the stack is something I call an error Right, but it's not doing that :) -- Dimi Paun [EMAIL PROTECTED] Lattica, Inc.

Re: [moniker 2] Fix FileMoniker::Load/Save

2005-06-02 Thread Richard Cohen
Mike McCormack wrote: In C, variables are traditionally lower case, and macros are upper case. ... but constants are also traditionally upper case. :) Robert Shearman wrote: ... paths that exist are saved with the Unicode version of their path name, but paths that don't are saved without.

Re: Google Summer of Code

2005-06-02 Thread Jonathan Ernst
Maybe he could reuse the code of poedit (http://www.poedit.org/) and just change the parsing/writing part to handle rc files instead of po's ? This tool is quite good for translating language files (it can make automatic proposal from reading other files in the same or other projects and has

Hello, everybody

2005-06-02 Thread chsoft
I'm new to here. I hope to contribute to the wine project such as wine directshow or wined3d. I have about one year development experience in designing directshow filters on winxp platform.Then try to port simple directshow architecture on embedded system with my colleagues. I want to know the

Re: Hello, everybody

2005-06-02 Thread Brian Vincent
On 6/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm new to here. I hope to contribute to the wine project such aswine directshow or wined3d.I have about one year development experience in designing directshowfilters on winxp platform.Thentry to port simple directshow architectureon embedded

Re: [include/winternl.h #6] SYSTEM_PROCESS_INFORMATION

2005-06-02 Thread Robert Shearman
Paul Vriens wrote: Hi, Hi Paul, the first bigger change to SYSTEM_PROCESS_INFORMATION. The structure now contains VM_COUNTERS (which had to move up in the file) instead of all the single (wrong) items, and IO_COUNTERS. I also added 2 extra FILETIME items (well actually I changed

Re: Hello, everybody

2005-06-02 Thread Christian Costa
[EMAIL PROTECTED] wrote: I'm new to here. I hope to contribute to the wine project such as wine directshow or wined3d. I have about one year development experience in designing directshow filters on winxp platform.Then try to port simple directshow architecture on embedded system with my

Google Summer of Code - Website maintenance

2005-06-02 Thread Ed Mack
Hello, I'm terribly sorry if this is the wrong forum to ask my question, if it is please redirect me :) But, I think I'm in the right from poking in the archives. Anyway, I'm really interested in maintaining the Wine site as per http://www.winehq.org/site/contributing , and would love some more

Re: Feasible google summer of code project?

2005-06-02 Thread Juan Lang
Mike wrote: In order of difficulty from easy to hard I'd say: - Linking Desktop/My Documents to the real locations snip Linking Desktop/My Documents to the real locations shouldn't be too hard I finally fixed that.. it should be super easy now ;) --Juan

Re: Google Summer of Code - Website maintenance

2005-06-02 Thread Ed Mack
On Thu, 2005-06-02 at 17:37 -0400, Chris Morgan wrote: As a developer on http://appdb.winehq.org I'd like to say that we could certainly use some help with the php that runs that site. The application database is an important resource to new and potential wine users and will only become more

Re: Google Summer of Code - Website maintenance

2005-06-02 Thread Brian Vincent
On 6/2/05, Ed Mack [EMAIL PROTECTED] wrote: Anyway, I'm really interested in maintaining the Wine site as perhttp://www.winehq.org/site/contributing , and would love some more infoon the the responsibilities and aims. My thought is that we're doing just fine on the web site. In fact, we should

Re: Google Summer of Code - Website maintenance

2005-06-02 Thread Dimi Paun
On Thu, 2005-06-02 at 16:11 -0600, Brian Vincent wrote: My thought is that we're doing just fine on the web site. In fact, we should probably remove it from the Contributing page. Agreed. Can you send a patch to do just that? Another idea I had was regarding fonts. What do you guys think of

Re: safedisc stuff

2005-06-02 Thread Stephen Torri
On Wed, 2005-06-01 at 21:32 +0200, Ivan Leo Puoti wrote: Hi guys, Mike Hearn asked me to send the work in progress stuff, so here it is (some stuff has been removed for legal reasons, so you can't run it in a debugger). Some of it sucks (See QueryServiceStatus for the worst hack ever,

Re: Google Summer of Code - Website maintenance

2005-06-02 Thread Brian Vincent
On 6/2/05, Dimi Paun [EMAIL PROTECTED] wrote: On Thu, 2005-06-02 at 16:11 -0600, Brian Vincent wrote: My thought is that we're doing just fine on the web site.In fact, we should probably remove it from the Contributing page.Agreed. Can you send a patch to do just that? Patch submitted, waiting to

Re: Google Summer of Code - Website maintenance

2005-06-02 Thread Chris Morgan
I wasn't thinking of any of the things on the current todo. It could use to be updated. One thing I've been thinking about lately is allowing maintainers to handle screenshot and version submissions for the applications they maintain. The maintainer system has been a great success so far

Re: safedisc stuff

2005-06-02 Thread Stephen Torri
I synced with CVS and applied your patch. I get a problem compiling dlls/ntdll/file.c: The problem was an operator error in failing to copy a file to the right location. I do get a real error, honest I do. fixme:ntdll:NtCreateFile failing because of error c00f fixme:file:CreateFileW

Re: Google Summer of Code

2005-06-02 Thread Francois Gouget
On Thu, 2 Jun 2005, Jonathan Ernst wrote: Maybe he could reuse the code of poedit (http://www.poedit.org/) and just change the parsing/writing part to handle rc files instead of po's ? I think a better way would be to extend po4a to handle RC files. This would allow the use of any po tool to

Re: Google Summer of Code

2005-06-02 Thread Jonathan Wilson
The tricky part (in all of these schemes really) is knowing how to handle the coordinates. They'd have to be put in the msgid together with the actual stuff to translate. But in fact you can't know what to set the coordinates to unless you see a graphical representation of the dialog... This

Re: Wine on Sparc

2005-06-02 Thread Michael Lin
Hi Chuck, Well the patches worked, I did need to change the first one slightly to make it work. Now I'm running into the problem of OpenGL, but I think this is solveable by pointing to Mesa instead of the native GL system. Not that I really need OpenGL through a terminal window... Haven't

Re: Google Summer of Code - Website maintenance

2005-06-02 Thread Chris Morgan
As a developer on http://appdb.winehq.org I'd like to say that we could certainly use some help with the php that runs that site. The application database is an important resource to new and potential wine users and will only become more important as we approach the 0.9 and 1.0 releases of wine.