Могу ли я ввести подсказку типа ctype ?
from ctypes import *
def wrap_function(library: str, name: str, restype, argtypes) -> *What goes here*:
"""Simplify wrapping ctypes functions"""
func = library.__getattr__(name)
func.restype = restype
func.argtypes = argtypes
return func
Проверка ctypes функций, которые я создал, прежде чем я получу <_FuncPtr object at 0x--------->
. Как мне указать это в python?
Я пробовал
ctypes.POINTER(ctypes.CFUNCTYPE)
, но он не работает с
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: must be a ctypes type