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)

你可能感兴趣的:(python调用dll中特定函数的两种方式(ctypes))