Remove experimental change unintentionally included in commit f001dfc8

pull/2392/head
Charlie Gettys 2019-03-29 18:43:57 -04:00
parent f001dfc840
commit e45d120f21
1 changed files with 3 additions and 3 deletions

View File

@ -192,9 +192,9 @@ def try_load_functions(library_path, dll):
# library found!
from .structs import Scene, ExportDataBlob
load.restype = ctypes.POINTER(Scene)
load_mem.restype = ctypes.POINTER(Scene)
export2blob.restype = ctypes.POINTER(ExportDataBlob)
load.restype = ctype.POINTER(Scene)
load_mem.restype = ctype.POINTER(Scene)
export2blob.restype = ctype.POINTER(ExportDataBlob)
return (library_path, load, load_mem, export, export2blob, release, dll)
def search_library():