mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2024-11-22 13:53:02 +05:30
10 lines
211 B
Python
10 lines
211 B
Python
import sys, ctypes
|
|
|
|
sharedlib = './lib3ddevil1.so'
|
|
libc = ctypes.cdll.LoadLibrary(sharedlib)
|
|
if not libc:
|
|
raise SystemExit("Couldn't load %s" % sharedlib)
|
|
|
|
# Don't need these anymore
|
|
del sys, sharedlib
|