1. 程式人生 > >python呼叫dll中特定函式的兩種方式(ctypes)

python呼叫dll中特定函式的兩種方式(ctypes)

1.直接使用函式名,函式名可以用dependency walker等工具檢視。

import ctypes
dll = CTYPES.CDLL("test.dll")
res = test(3, 4)

2.使用Ordinal,Ordinal可以用dependency walker等工具檢視。
import ctypes
dll = CTYPES.CDLL("test.dll")
res = dll[1](3, 4)