diff --git a/examples/call_v_from_python/test.py b/examples/call_v_from_python/test.py index 33b9ba7327..9cebed3552 100644 --- a/examples/call_v_from_python/test.py +++ b/examples/call_v_from_python/test.py @@ -1,4 +1,8 @@ from ctypes import * +import os + so_file="./test.so" +if os.name=="nt": + so_file="./test.dll" my_functions = CDLL(so_file) print(my_functions.square(10))