bonjour,
je voudrais utiliser le module ctypes pour charger une librairie
j'obtiens l'erreur suivante.
Si quelqu'un est déja tombé sur ce problème ??
from ctypes import *
import os
current_path = os.getcwd()
#print current_path
path_dll = os.path.join(current_path,"dll_abc")
myfile = path_dll + "\\" + "helloworld.dll"
os.chdir(path_dll)
libtest = windll.LoadLibrary(myfile)
erreur =
File "C:\Python27\lib\ctypes\__init__.py", line 365, in __init__
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 87] ParamÞtre incorrect
Partager