I am trying to access some functions with in a dll I downloaded. I know I need to use ctypes, but all the examples and tutorials use windll.kernel or windll.user32 respectively.
How would I go about calling a function with in xyz.dll?
EDIT:
Never mind, with a bit more digging i found it.
from ctypes import *
fd = windll.LoadLibrary("xyz.dll")