Re: Looking for information on implemented API's in wine

2003-02-16 Thread Dimitrie O. Paun
On February 14, 2003 06:45 pm, Matthew Stump wrote: have you thought about xml? Please, don't. It's a lot harder to process with standard Unix tools, and they are uglier to read :). If we can work with a flat file, we should. -- Dimi.

Re: Looking for information on implemented API's in wine

2003-02-15 Thread Matthew Stump
have you thought about xml? --matt On Fri, Feb 14, 2003 at 10:09:37PM +0100, Gerhard W. Gruber wrote: On Fri, 14 Feb 2003 12:59:50 -0800, Dan Kegel [EMAIL PROTECTED] wrote: I can't but think that MySQL is way overkill. Tha'ts true if you have to install it for just that purpose.

Re: Looking for information on implemented API's in wine

2003-02-14 Thread Gerhard W. Gruber
On Thu, 13 Feb 2003 20:20:06 -0500, Dave Miller [EMAIL PROTECTED] wrote: Hmm. I did intend to use a database, specifically MySQL was my thinking. What I hoped was there would be a web interface to query the database and so everyone would not have to have MySQL to use it. Of course it needs to

Re: Looking for information on implemented API's in wine

2003-02-14 Thread Dan Kegel
Gerhard W. Gruber wrote: On Thu, 13 Feb 2003 20:20:06 -0500, Dave Miller [EMAIL PROTECTED] wrote: Hmm. I did intend to use a database, specifically MySQL was my thinking. What I hoped was there would be a web interface to query the database and so everyone would not have to have MySQL to use

Re: Looking for information on implemented API's in wine

2003-02-14 Thread Gerhard W. Gruber
On Fri, 14 Feb 2003 12:59:50 -0800, Dan Kegel [EMAIL PROTECTED] wrote: I can't but think that MySQL is way overkill. Tha'ts true if you have to install it for just that purpose. Otherwise it is a rather convenient way to handle this data and you don't have to write some script for the queries.

Re: Looking for information on implemented API's in wine

2003-02-14 Thread Dave Miller
I've never actually had any intention of everyone needing to install MySQL in order to make use of the database. I had planned on it being a single database, accessible via the web. Querying would be done via forms. It seemed the easiest way to present all the data in a single place. I also

Looking for information on implemented API's in wine

2003-02-13 Thread David Miller
I am ready to begin work on the actual database aspect of cross referencing the windows dlls. As part of the database I would like to include the status of a given API in wine so it will be possible to do things like query for all unimplemented APIs in a given dll. The first questions I have

Re: Looking for information on implemented API's in wine

2003-02-13 Thread Rolf Kalbermatter
David Miller [EMAIL PROTECTED] wrote: I am ready to begin work on the actual database aspect of cross referencing the windows dlls. As part of the database I would like to include the status of a given API in wine so it will be possible to do things like query for all unimplemented APIs in a

Re: Looking for information on implemented API's in wine

2003-02-13 Thread Dimitrie O. Paun
On February 13, 2003 07:42 pm, Dave Miller wrote: I am ready to begin work on the actual database aspect of cross referencing the windows dlls. Hi Dave, I'm not sure if you intend to use a real database (like MySql, or PostgreSQL) to implement this, but if you do, I'd strongly advise against

Re: Looking for information on implemented API's in wine

2003-02-13 Thread Dave Miller
Sounds to me like I can use the spec files as a reference, but to be accurate I'll need to scan the source code as well for any APIs which the spec files claim are implemented in order to determine if they are only FIXMEs. :( I'll see if I can understand how winapi_check does it. -

Re: Looking for information on implemented API's in wine

2003-02-13 Thread Dave Miller
Hmm. I did intend to use a database, specifically MySQL was my thinking. What I hoped was there would be a web interface to query the database and so everyone would not have to have MySQL to use it. Of course it needs to be hosted somewhere but I figured I'd cross that bridge when it became a