#Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_UseX64=y #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** Local $result, $error Local $dll = "test_call_x64.dll" Local $MyValue = 5e-3 $result = DllCall($dll,"int:cdecl","call_float" ,"float",5e-3) $result = DllCall($dll,"int:cdecl","call_float_filename","str","test","float",5e-3) $result = DllCall($dll,"int:cdecl","call_double" ,"double",5e-3 ) $result = DllCall($dll,"int:cdecl","call_double_filename","str","test","double",5e-3 ) $result = DllCall($dll,"int:cdecl","call_double_filename","str","test","double",$MyValue) ;############################################################################################################################################################## ;############################################################################################################################################################## ;############################################################################################################################################################## ;############################################################################################################################################################## ;##############################################################################################################################################################