I made a .pyd file with this source:
def hello():
print("Hello world")
and I want to run hello() from rundll32 (Or any C code in general)
I tried rundll32 hello.pyd,hello()
and rundll32 hello.pyd,hello
but neither worked
I also looked through the C code, and did not find anything useful