ReySKR wrote:It's a simple question, but i think the answers arent. So well, from where can i know what dlls a application needs?
Thanks for every answer

If the WineHQ AppDB isn't of use, for the particular application you are testing...
Then it's probably worth running the application with
Code: Select all
export WINEDEBUG=+loaddll
wine start ... &>~/wine_loaddll_log.txt
This will log all
dll's Wine tries to load and whether they are builtin or native.
Also an application will often call a WIN API entry point, which does not exist in a builtin
dll - typically result in an
ERR, or results in a
FIXME warning (due to only being partially implemented).
These entry point functions can usually be looked up quite easily on
MSDN, to see what
dll they correspond to.
Bob