I am trying to refactor some pascal code from a windows App to a non-gui library running on Linux. I am invoking exported functions from python, passing in a valid file name to an .xlsx file that opens fine in libreoffice. The python side invoking the function is: def load_cam_parameters(filename): """Python wrapper for LoadFullCAMParameters""" c_filename = ffi.new("char[]", filename.encode('utf-8')) lib.LoadFullCAMParameters(c_filename) internally to pascal code the PChar is converting to a pascal...