Hi,
The wine.conf man page says that in Snoop Include/Exclude specifiying <dllname>.* includes the whole dll. This does not work: you have to specify <dllname> without the ".*", at least that is the code.
What should be corrected code or documentation?
My guess it is the doc, here is the coorection.
Changelog: In wine.conf man page correctly specify how to include/exclude the whole dll.
Rein.
Rein Klazes rklazes@xs4all.nl writes:
The wine.conf man page says that in Snoop Include/Exclude specifiying <dllname>.* includes the whole dll. This does not work: you have to specify <dllname> without the ".*", at least that is the code.
What should be corrected code or documentation?
The code actually, the idea is that a name without dot is interpreted as a function name, and with a dot the left part is a dll name and the right part is either a function or '*'. That's at least how the 32-bit relay works, the others should probably be fixed to behave the same way.
On Tue, 14 Oct 2003 12:12:13 -0700, you wrote:
Rein Klazes rklazes@xs4all.nl writes:
The wine.conf man page says that in Snoop Include/Exclude specifiying <dllname>.* includes the whole dll. This does not work: you have to specify <dllname> without the ".*", at least that is the code.
What should be corrected code or documentation?
The code actually, the idea is that a name without dot is interpreted as a function name, and with a dot the left part is a dll name and the right part is either a function or '*'. That's at least how the 32-bit relay works, the others should probably be fixed to behave the same way.
For snooping:
ChangeLog: dlls/ntdll : relay.c dlls/kernel : relay16.c
Make items in the snoop include/exclude lists work as documented: either <DLLNAME>.* or <DLLNAME>.<ordinal> or <DLLNAME>.<function> or <function>
Rein.