mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2024-11-21 21:32:58 +05:30
declared function where del sharedlib is not needed anymore
This commit is contained in:
parent
a2d91cd56b
commit
360de0dea5
@ -1,11 +1,12 @@
|
||||
import ctypes
|
||||
|
||||
sharedlib = './lib3ddevil1.so'
|
||||
try:
|
||||
libc = ctypes.cdll.LoadLibrary(sharedlib)
|
||||
except OSError as e:
|
||||
print("Error loading dynamically linked library.\nOSError: " + str(e))
|
||||
raise SystemExit("Couldn't load %s" % sharedlib)
|
||||
def loadlibc():
|
||||
sharedlib = './lib3ddevil1.so'
|
||||
libc = None
|
||||
try:
|
||||
libc = ctypes.cdll.LoadLibrary(sharedlib)
|
||||
except OSError as e:
|
||||
print("Error loading dynamically linked library.\nOSError: " + str(e))
|
||||
raise SystemExit("Couldn't load %s" % sharedlib)
|
||||
|
||||
# Don't need these anymore
|
||||
del sharedlib
|
||||
libc = loadlibc()
|
Loading…
Reference in New Issue
Block a user