#1 Le 07/02/2018, à 21:07
- Woffen
IrisPen sur Wine
Bonjour à tous,
Avec bien des scrupules, j'ai installé Wine sur mon Gnome (Ubuntu 16.01), pour pouvoir utiliser un IrisPen Executive 7 -- dans la mesure où aucun stylo scanner ne fonctionne sous Linux. Après l'installation du logiciel IrisPen, je rencontre deux problèmes :
1 -- Je ne peux pas activer le produit (entrer le code d'activation du logiciel) : quand j'essaie, un message d'erreur s'affiche :
#O: Machine offline or server down
OLE error 80020006
2 -- Lorsque j'essaie d'ouvrir le logiciel, deux messages d'erreur s'affichent :
Le premier, que je peux fermer :
OLE error 800401F3
Le second, qui s'affiche de nouveau à chaque fois que je le ferme :
list index out of bound (-1)
Quelqu'un saurait-il si l'on peut résoudre ces problèmes, et comment ?
A ce titre, il n'est pas sûr qu'IrisPen soit compatible avec Wine : il n'est pas dans la liste des applications attestées comme compatibles avec Wine (ReadIris est compatible, et j'ai confondu les deux, ce pourquoi j'ai acheté l'IrisPen...).
Merci d'avance.
Dernière modification par Woffen (Le 07/02/2018, à 21:37)
Hors ligne
#2 Le 09/02/2018, à 14:13
- k3c
Re : IrisPen sur Wine
Quelle est ta version de wine ?
wine --version
tu as créé un suffixe .winexxx spécifique ?
Tu as installé des librairies en plus via winetricks ?
Peux-tu poster le résultat de
objdump -x Ton_exe.exe | grep -i DLL | sort | uniq
Quelle commande utilises tu pour lancer ton logiciel ?
Tu utilise wine 32 bits ou wine 64 bits ?
Dernière modification par k3c (Le 09/02/2018, à 14:13)
Debian 12 sur Thinkpad reconditionné
Hors ligne
#3 Le 09/02/2018, à 19:44
- Woffen
Re : IrisPen sur Wine
Bonjour, et merci de ta réponse.
J’ai installé Wine depuis Logiciels, donc c’est la version 1.6 (précisément : 1:1.6.2-0ubuntu14.2).
Je n’ai pas créé de suffixe.
Je n’ai pas créé de librairie supplémentaire via Winetricks – et en fait je n’ai pas utilisé Winetricks pour installer le logiciel IrisPen : j’ai exécuté le .exe fourni quand on achète IrisPen.
Pour ce qui est du Wine 32 ou 64 bits, je ne sais pas te répondre ; comment je peux regarder ça ?
Pour le lancement du programme, je n’ai pas essayé avec une ligne de commande : 1) Wine a mis un raccourci sur mon bureau lors de l’installation du programme, qui lance donc simultanément Wine et le logiciel ; 2) je peux aussi aller le chercher dans le dossier .wine, où tous les logiciels installés sur Wine se trouvent, et cliquer dessus comme pour ouvrir un fichier ; 3) je peux aussi le lancer grâce au ClassicMenu Indicator, c’est-à-dire comme on lance un programme dans le menu sur Windows.
Voici les résultats de la commande que tu m’as demandée :
1 – Pour le .exe qui gère l’activation du logiciel (rentrer le code d’activation) :
objdump -x ActivateProduct.exe | grep -i DLL | sort | uniq
DllCharacteristics 00000000
DLL Name: advapi32.dll
DLL Name: comctl32.dll
DLL Name: comdlg32.dll
DLL Name: gdi32.dll
DLL Name: kernel32.dll
DLL Name: msimg32.dll
DLL Name: ole32.dll
DLL Name: oleaut32.dll
DLL Name: shell32.dll
DLL Name: user32.dll
DLL Name: version.dll
DLL Name: wininet.dll
DLL Name: winmm.dll
DLL Name: winspool.drv
vma: Hint Temps Avant DLL Premier
2, a – Ya deux .exe pour le fonctionnement de l’IrisPen ; voici pour le premier :
objdump -x IRISPen.exe | grep -i DLL | sort | uniq
DllCharacteristics 00000000
DLL Name: advapi32.dll
DLL Name: comctl32.dll
DLL Name: comdlg32.dll
DLL Name: gdi32.dll
DLL Name: kernel32.dll
DLL Name: msimg32.dll
DLL Name: ole32.dll
DLL Name: oleacc.dll
DLL Name: oleaut32.dll
DLL Name: shell32.dll
DLL Name: SIUSBXP.DLL
DLL Name: URLMON.DLL
DLL Name: user32.dll
DLL Name: version.dll
DLL Name: winhttp.dll
DLL Name: wininet.dll
DLL Name: winmm.dll
DLL Name: winspool.drv
vma: Hint Temps Avant DLL Premier
2, b – Voici pour le second :
objdump -x ScanDeamon.exe | grep -i DLL | sort | uniq
DllCharacteristics 00000000
DLL Name: advapi32.dll
DLL Name: comctl32.dll
DLL Name: comdlg32.dll
DLL Name: gdi32.dll
DLL Name: kernel32.dll
DLL Name: msimg32.dll
DLL Name: ole32.dll
DLL Name: oleaut32.dll
DLL Name: shell32.dll
DLL Name: user32.dll
DLL Name: version.dll
DLL Name: winspool.drv
vma: Hint Temps Avant DLL Premier
Dernière modification par Woffen (Le 09/02/2018, à 19:46)
Hors ligne
#4 Le 09/02/2018, à 23:43
- k3c
Re : IrisPen sur Wine
>>> Pour ce qui est du Wine 32 ou 64 bits, je ne sais pas te répondre ; comment je peux regarder ça ?
tu peux faire, si home/$USER/.wine est ton suffixe wine
find .wine/ -name "Program Fil*"
si ça te renvoie
Program Files
tu as wine 32 bits
si ça te renvoie
Program Files64
ou
Program Filesx86
ou un truc du genre, tu es en wine 64 bits
il semble que tu aies besoin de wine 32 bits, vu que ton programme peut s'exécuter sous XP
Pour les objdump, comme je vois
wininet winhttp comctl32
il faudrait au moins installer ceux-là via une commande du type
WINEARCH=win32 WINEPREFIX=/home/$USER/.wine_ton_prefix winetricks -q --unattended wininet winhttp comctl32
puis lancer avec une commande du type
WINEARCH=win32 WINEPREFIX=/home/$USER/.wine_ton_prefix WINEDEBUG=loaddll wine ton_exe
manqu
Dernière modification par k3c (Le 09/02/2018, à 23:44)
Debian 12 sur Thinkpad reconditionné
Hors ligne
#5 Le 10/02/2018, à 10:30
- Woffen
Re : IrisPen sur Wine
Bon, c'est bien un Wine 32 bits. Merci.
Pour les objdump, je ne comprends pas bien : j'ai déjà wininet, winhttp et comctl32 dans .wine/drive_c/windows/system32 ; que voulais-tu en faire ?
Ensuite, la commande
WINEARCH=win32 WINEPREFIX=/home/$USER/.wine_ton_prefix WINEDEBUG=loaddll wine ton_exe
charge toute une floppée de fichiers .dll (dont comctl32, mais pas wininet et winhttp) dans .wine/drive_c/windows/system32, mais ensuite échoue à lancer le .exe en question, parce qu'elle le cherche dans system32, alors qu'il est dans un sous-dossier de Program Files.
Hors ligne
#6 Le 10/02/2018, à 14:25
- k3c
Re : IrisPen sur Wine
>>>Pour les objdump, je ne comprends pas bien : j'ai déjà wininet, winhttp et comctl32 dans .wine/drive_c/windows/system32 ; que voulais-tu en faire ?
les installer si ils n'étaient pas là
>>>WINEDEBUG=loaddll
va t'indiquer si on réussit (ou pas) à charger une DLL dont on a besoin
>>>mais ensuite échoue à lancer le .exe en question, parce qu'elle le cherche dans system32, alors qu'il est dans un sous-dossier de Program Files.
bizarre
Je ferai volontiers un essai, mais ton soft n'est pas librement téléchargeable, il me semble qu'il faut acheter le produit pour l'avoir
Debian 12 sur Thinkpad reconditionné
Hors ligne
#7 Le 10/02/2018, à 16:10
- Woffen
Re : IrisPen sur Wine
Je veux bien te l'envoyer, si tu veux -- comme il faut un code d'activation après pour l'utiliser, je ne vois pas de problème de légalité.
Hors ligne
#8 Le 11/02/2018, à 09:44
- k3c
Re : IrisPen sur Wine
Faudrait faire un essai avec les derniers wine 3.0 ou 3.1
Debian 12 sur Thinkpad reconditionné
Hors ligne
#9 Le 11/02/2018, à 17:18
- Woffen
Re : IrisPen sur Wine
Je viens d'essayer : le résultat est le même (même erreurs).
Hors ligne
#10 Le 11/02/2018, à 17:48
- k3c
Re : IrisPen sur Wine
Tu peux poster la commande passée et le résultat ?
Debian 12 sur Thinkpad reconditionné
Hors ligne
#11 Le 12/02/2018, à 10:01
- Woffen
Re : IrisPen sur Wine
J'ai fait exactement la même chose que dans mes messages précédents, et les résultats sont exactement les mêmes.
Mais tu as peut-être autre chose en tête, et je n'ai pas compris -- je m'en excuse.
Hors ligne
#12 Le 12/02/2018, à 13:01
- k3c
Re : IrisPen sur Wine
Tu as juste posté une ligne, pas l'intégralité
Debian 12 sur Thinkpad reconditionné
Hors ligne
#13 Le 12/02/2018, à 14:49
- Woffen
Re : IrisPen sur Wine
Voilà :
valentin@valoche-EasyNote-TJ68:~$ WINEARCH=win32 WINEPREFIX=/home/valentin/.wine WINEDEBUG=loaddll wine ScanDeamon.exe
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\wineboot.exe" at 0x7ed30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ecc0000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winemenubuilder.exe" at 0x7ed40000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7eb00000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e890000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eda0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e9b0000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7e820000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7eb70000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0x7e6f0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\services.exe" at 0x7ed30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7e670000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ec50000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ecb0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\windowscodecs.dll" at 0x7eca0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e350000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7e450000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\userenv.dll" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winedevice.exe" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ecf0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0x7ecb0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ec30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\mountmgr.sys" at 0x7ec10000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\plugplay.exe" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ecf0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ec70000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e3b0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eaf0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e4c0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e7c0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e8e0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7ea30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e6d0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7eaa0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e0f0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7dec0000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\explorer.exe" at 0x7ed40000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ec60000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ecc0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e9f0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7eb10000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e460000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7e230000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7e090000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7e110000: builtin
wine: cannot find L"C:\\windows\\system32\\ScanDeamon.exe"
valentin@valoche-EasyNote-TJ68:~$ trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e190000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e790000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x7e570000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7e290000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e190000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7e300000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7e160000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7e040000: builtin
Comme je te l'indiquais, il échoue à trouver le .exe, parce qu'il le cherche au mauvais endroit, dans System 32, alors qu'il est dans un sous-dossier de Program Files. (cf. ligne : wine: cannot find L"C:\\windows\\system32\\ScanDeamon.exe")
Hors ligne
#14 Le 12/02/2018, à 15:15
- k3c
Re : IrisPen sur Wine
Tu peux le copier à la main au bon endroit
Debian 12 sur Thinkpad reconditionné
Hors ligne
#15 Le 12/02/2018, à 17:51
- Woffen
Re : IrisPen sur Wine
Tu veux dire déplacer le .exe dans System 32 ? Dans ce cas, la commande donne ceci :
WINEARCH=win32 WINEPREFIX=/home/valentin/.wine WINEDEBUG=loaddll wine ScanDeamon.exe
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\wineboot.exe" at 0x7ed30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ecc0000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winemenubuilder.exe" at 0x7ed30000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\services.exe" at 0x7ed40000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7eaf0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ec60000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ecd0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\userenv.dll" at 0x7eda0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e890000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e9a0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7e810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7eb60000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0x7e6f0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7e670000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\windowscodecs.dll" at 0x7ec90000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e340000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7e440000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winedevice.exe" at 0x7eda0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ed00000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0x7ecb0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ec40000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\mountmgr.sys" at 0x7ec20000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\plugplay.exe" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ecf0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ec80000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e3b0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eaf0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e4c0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e7c0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e8e0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7ea30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e6d0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7eaa0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7dfc0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7dd90000: builtin
trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b810000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\explorer.exe" at 0x7ed40000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ec60000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7ecc0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e9f0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7eff0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7eb10000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e460000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7e230000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7e090000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7e110000: builtin
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\ScanDeamon.exe" at 0x400000: native
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\advapi32.dll" at 0x7ea80000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\gdi32.dll" at 0x7e820000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\version.dll" at 0x7e800000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\user32.dll" at 0x7e940000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0x7e790000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7eb00000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0x7ec30000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\msimg32.dll" at 0xb7d40000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e690000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7e400000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7e470000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winspool.drv" at 0x7e2d0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comdlg32.dll" at 0x7e310000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e1b0000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e790000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x7e560000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0x7e290000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\comctl32.dll" at 0x7e190000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\shell32.dll" at 0x7e300000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7e160000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\ole32.dll" at 0x7e040000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winex11.drv" at 0x7e020000: builtin
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0x7ddf0000: builtin
fixme:thread:GetThreadUILanguage : stub, returning default language.
fixme:thread:GetThreadPreferredUILanguages 56, 0x32d5ec, (nil) 0x32d614
fixme:thread:GetThreadPreferredUILanguages 56, 0x32d5ec, (nil) 0x32d614
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\imm32.dll" at 0x7d5f0000: builtin
Dernière modification par Woffen (Le 12/02/2018, à 17:59)
Hors ligne
#16 Le 12/02/2018, à 19:55
- k3c
Re : IrisPen sur Wine
dans ce cas je crois que ça veut dire que cette librairie n'est pas installée correctement
si tu fais
WINEARCH=win32 WINEPREFIX=/home/valentin/.wine WINEDEBUG=loaddll winecfg
que tu vas dans
Bibliothèques
ou
Libraries
(si tu es en anglais)
il faut regarder si elle est en
native
ou
native intégrée
et modifier pour essayer toutes les possibilités
Bon courage
Debian 12 sur Thinkpad reconditionné
Hors ligne
#17 Le 12/02/2018, à 20:35
- Woffen
Re : IrisPen sur Wine
Oh ! Très bien !
Eh bien merci pour tes encouragements.
Hors ligne
#18 Le 12/02/2018, à 22:05
- Woffen
Re : IrisPen sur Wine
Quand j'édite un remplacement de DLL dans Bibliothèques, je peux choisir comme option intégrée puis native. Est-ce que ça signifie que Wine va essayer la DDL intégrée, et, si ça ne marche pas, essayer la native ensuite ?
Si oui, alors en éditant un remplacement et en sélectionnant intégrée puis native pour toutes les DDL requises par le programme (et listées dans le message #3 de cette conversation), j'imagine que j'aurai essayé en un coup toutes les possibilités, non ? Auquel cas je peux déjà dire que ça n'a rien changé, malheureusement.
Dernière modification par Woffen (Le 12/02/2018, à 22:09)
Hors ligne
#19 Le 12/02/2018, à 23:02
- k3c
Re : IrisPen sur Wine
En théorie il y a 5 catégories
Debian 12 sur Thinkpad reconditionné
Hors ligne
#20 Le 12/02/2018, à 23:24
- Woffen
Re : IrisPen sur Wine
Oui, bien sûr. Je me demande juste si la fonction intégrée puis native n'est pas une façon de tester toutes ces possibilités d'un coup.
Pour le moment, j'ai essayé avec toutes en intégrée puis native, et toutes en native puis intégrée, sans résultat probant.
Tu penses qu'il faut essayer toutes les combinaisons possibles (e.g. toutes en native, sauf une en intégrée ; toutes en native, sauf deux en intégrée ; etc.) ?
Hors ligne
#21 Le 13/02/2018, à 06:20
- k3c
Re : IrisPen sur Wine
Hélas oui
Sinon, installer ce soft dans un Windows, et regarder la configuration en question.
Debian 12 sur Thinkpad reconditionné
Hors ligne
#22 Le 13/02/2018, à 09:51
- Woffen
Re : IrisPen sur Wine
Entendu, merci.
1) J'ai facilement accès à un Windows, donc ta proposition d'"installer ce soft dans un Windows, et [de] regarder la configuration en question" m'intéresse. En même temps, je ne comprends pas bien : si je suis windows, ce sera nécessairement des .dll natives, non ?
2) Les codes d'erreur OLE que je rencontre n'indiqueraient-il pas la ou les .dll qui plantent ?
Dernière modification par Woffen (Le 13/02/2018, à 10:11)
Hors ligne
#23 Le 13/02/2018, à 10:49
- k3c
Re : IrisPen sur Wine
Pour 2) il y a une erreur wine connue
https://bugs.winehq.org/show_bug.cgi?id=35577
qui pointe sur
https://bugs.winehq.org/show_bug.cgi?id=26226
Debian 12 sur Thinkpad reconditionné
Hors ligne
#24 Le 13/02/2018, à 11:53
- Woffen
Re : IrisPen sur Wine
Merci, je regarde ça.
Tu peux m'expliquer ta proposition d'installer ce soft dans un Windows, et [de] regarder la configuration en question", s'il-te-plaît ?
Hors ligne
#25 Le 13/02/2018, à 16:21
- k3c
Re : IrisPen sur Wine
Faire winecfg et comparer avec Linux
Debian 12 sur Thinkpad reconditionné
Hors ligne