We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DSS_Start
1 parent 24f803b commit 29e1279Copy full SHA for 29e1279
1 file changed
dss_python_backend/__init__.py
@@ -9,15 +9,15 @@
9
import os
10
11
if os.environ.get('DSS_EXTENSIONS_DEBUG', '') != '1':
12
- from ._dss_capi import ffi, lib
+ from ._altdss_capi import ffi, lib
13
else:
14
import warnings
15
warnings.warn('Environment variable DSS_EXTENSIONS_DEBUG=1 is set: loading the debug version of the DSS C-API library')
16
- from ._dss_capid import ffi, lib
+ from ._altdss_capid import ffi, lib
17
18
# Ensure this is called at least once. This was moved from
19
# CffiApiUtil so we call it as soon as the DLL/so is loaded.
20
-lib.DSS_Start(0)
+lib.ctx_DSS_Start(ffi.NULL, 0)
21
22
__version__ = '0.14.6a1'
23
__all__ = ['ffi', 'lib']
0 commit comments