tech:notes_windows_exe_dll
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| tech:notes_windows_exe_dll [2026/04/24 23:37] – Jean-Baptiste | tech:notes_windows_exe_dll [2026/05/03 21:33] (Version actuelle) – Jean-Baptiste | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| + | < | ||
| + | {{tag> | ||
| + | |||
| + | |||
| + | # Notes windows EXE DLL | ||
| + | |||
| + | Voir : | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * `cygwin1.dll` | ||
| + | |||
| + | |||
| + | Go lang | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | |||
| + | Voir aussi (Linux) : | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | |||
| + | |||
| + | Voir les fonctions présentes dans le DLL | ||
| + | ~~~bash | ||
| + | readpe -e msvbvm60.dll | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ~~~bash | ||
| + | winedump -j export msvbvm60.dll | ||
| + | ~~~ | ||
| + | |||
| + | Voir les DLL liées | ||
| + | ~~~ | ||
| + | i686-w64-mingw32-objdump -p win-cgo-test.exe | grep "DLL Name:" | ||
| + | DLL Name: ws2_32.dll | ||
| + | DLL Name: advapi32.dll | ||
| + | DLL Name: ntdll.dll | ||
| + | DLL Name: kernel32.dll | ||
| + | DLL Name: winmm.dll | ||
| + | DLL Name: msvcrt.dll | ||
| + | ~~~ | ||
| + | |||
| + | FIXME | ||
| + | |||
| + | |||
| + | ## Appeler une fonction dans une DLL | ||
| + | |||
| + | ### Avec Go | ||
| + | |||
| + | Voir [[wine Err bcryptprimitives.dll not found - Compilation Croisée Go lang]] | ||
| + | |||
| + | |||
| + | ## En ligne de commande | ||
| + | |||
| + | Voir : | ||
| + | * https:// | ||
| + | |||
| + | ~~~bash | ||
| + | wine rundll32.exe user32.dll, | ||
| + | env LANG=" | ||
| + | ~~~ | ||
| + | |||
