Hi I'm looking for a list of all the functions that would be displayed in a debug list.
I'm feel like doing a fun project and am wondering if any body have pointers on how I can obtain the information I need.
Basically I'm interested in writing a little script that would run through a debug output and pickup all the functions called with the execution of the Windows program in wine.
I then want to match the functions called with a DB that tell me what the estimated completion level of each function is.
The idea is to then is to calculate the probability that a program will function correctly with the current wine implementation. This is done using statistical data and estimation data for each function. (Like I say just for interest sake).
What bothers me is the estimation of function completeness. How can I measure or alternatively collect this. Any suggestions would be appreciated.
On Thu, Sep 11, 2003 at 12:21:56AM +0200, Jacobus Erasmus wrote:
Hi I'm looking for a list of all the functions that would be displayed in a debug list.
...
Basically I'm interested in writing a little script that would run through a debug output and pickup all the functions called with the execution of the Windows program in wine.
You don't really need a list of functions to do this; you just need to parse the debug-output (probably of 'wine -debugmsg +relay'). It should by easy to do this in Perl and store the result in a MySQL table, for instance. Probably the table would be based on the tuple (program, function, count)... You could also just collect the informatio in a hash and print it to stdout, but that would be less useful for comparing multiple programs.
-- DLL