Use of the Wine trace function

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
latte
Level 2
Level 2
Posts: 23
Joined: Sat Mar 10, 2018 2:16 pm

Use of the Wine trace function

Post by latte »

There were some notes on the wiki that it was unlawful to use the trace function to develop wine.
> You are not allowed to analyze Windows files with the trace functions of Wine
What does this precisely mean? Does it mean we can't submit logs to bug reports that include
trace messages?

In Europe the legal situation is like this
http://eur-lex.europa.eu/LexUriServ/Lex ... 022:EN:PDF
under the software directive.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Use of the Wine trace function

Post by jkfloris »

You are not allowed to analyze Windows files with the trace functions of Wine
This is (probably) against the rules/ copyright of Microsoft

From the pdf:
A person having a right to use a computer program
should not be prevented from performing acts
necessary to observe, study or test the functioning of
the program, provided that those acts do not infringe
the copyright in the program.
User avatar
DarkShadow44
Level 8
Level 8
Posts: 1207
Joined: Tue Nov 22, 2016 5:39 pm

Re: Use of the Wine trace function

Post by DarkShadow44 »

IANAL, but AFAIK the situation is the following:
You can use tracing to debug a windows program.
You can't use tracing it to find out how windows components work. For example, when you use a dll override for d3dx9_43.dll, tracing might give you information how that dll works. And you're not supposed to use it like that.
latte
Level 2
Level 2
Posts: 23
Joined: Sat Mar 10, 2018 2:16 pm

Re: Use of the Wine trace function

Post by latte »

Thank you very much. That is very useful information.
Locked