Skip to content

Commit 9e4f088

Browse files
test
1 parent 43c51a9 commit 9e4f088

File tree

11 files changed

+24
-25
lines changed

11 files changed

+24
-25
lines changed

dynamsoft_barcode_reader_bundle/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.10.8499"
1+
__version__ = "4.0.10.8511"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftCore

dynamsoft_barcode_reader_bundle/cvr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.10.8499"
1+
__version__ = "3.0.10.8511"
22

33
if __package__ or "." in __name__:
44
from .core import *

dynamsoft_barcode_reader_bundle/dbr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "11.0.10.8499"
1+
__version__ = "11.0.10.8511"
22

33
if __package__ or "." in __name__:
44
from .core import *

dynamsoft_barcode_reader_bundle/dip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.10.8499"
1+
__version__ = "3.0.10.8511"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftImageProcessing

dynamsoft_barcode_reader_bundle/license.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.10.8499"
1+
__version__ = "4.0.10.8511"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftLicense

dynamsoft_barcode_reader_bundle/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.10.8499"
1+
__version__ = "2.0.10.8511"
22

33
if __package__ or "." in __name__:
44
from .cvr import *

src/DynamsoftBarcodeReader_wrap.cxx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16588,9 +16588,7 @@ extern "C"
1658816588
* -----------------------------------------------------------------------------*/
1658916589
static PyObject *dataModule=nullptr;
1659016590

16591-
#ifdef __cplusplus
16592-
extern "C"
16593-
#endif
16591+
1659416592
void ModelExit(void)
1659516593
{
1659616594
if(dataModule)
@@ -16599,6 +16597,9 @@ void ModelExit(void)
1659916597
dataModule = nullptr;
1660016598
}
1660116599
}
16600+
#ifdef __cplusplus
16601+
extern "C"
16602+
#endif
1660216603
SWIGEXPORT
1660316604
#if PY_VERSION_HEX >= 0x03000000
1660416605
PyObject *

src/DynamsoftCaptureVisionRouter_wrap.cxx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16014,20 +16014,18 @@ extern "C"
1601416014
* -----------------------------------------------------------------------------*/
1601516015
static PyObject *dataModule=nullptr;
1601616016

16017-
#ifdef __cplusplus
16018-
extern "C"
16019-
#endif
16017+
1602016018
void ModelExit(void)
1602116019
{
1602216020
if(dataModule)
1602316021
{
1602416022
Py_DECREF(dataModule);
1602516023
dataModule = nullptr;
1602616024
}
16027-
else{
16028-
printf("no dataModule\n");
16029-
}
1603016025
}
16026+
#ifdef __cplusplus
16027+
extern "C"
16028+
#endif
1603116029
SWIGEXPORT
1603216030
#if PY_VERSION_HEX >= 0x03000000
1603316031
PyObject *

src/DynamsoftCore_wrap.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19525,9 +19525,6 @@ extern "C"
1952519525
* -----------------------------------------------------------------------------*/
1952619526
static PyObject *dataModule=nullptr;
1952719527

19528-
#ifdef __cplusplus
19529-
extern "C"
19530-
#endif
1953119528
void ModelExit(void)
1953219529
{
1953319530
if(dataModule)
@@ -19536,6 +19533,9 @@ void ModelExit(void)
1953619533
dataModule = nullptr;
1953719534
}
1953819535
}
19536+
#ifdef __cplusplus
19537+
extern "C"
19538+
#endif
1953919539
SWIGEXPORT
1954019540
#if PY_VERSION_HEX >= 0x03000000
1954119541
PyObject *
@@ -19620,7 +19620,7 @@ void
1962019620
SWIG_InitializeModule(0);
1962119621
dataModule = PyImport_AddModule("runtime_data" DYNAMSOFT_POSTFIX);
1962219622
if(dataModule)
19623-
Py_INCREF(dataModule);
19623+
Py_INCREF(dataModule);
1962419624
Py_AtExit(ModelExit);
1962519625
#ifdef SWIGPYTHON_BUILTIN
1962619626
swigpyobject = SwigPyObject_TypeOnce();

src/DynamsoftLicense_wrap.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4880,9 +4880,6 @@ extern "C"
48804880
* -----------------------------------------------------------------------------*/
48814881
static PyObject *dataModule=nullptr;
48824882

4883-
#ifdef __cplusplus
4884-
extern "C"
4885-
#endif
48864883
void ModelExit(void)
48874884
{
48884885
if(dataModule)
@@ -4891,6 +4888,9 @@ void ModelExit(void)
48914888
dataModule = nullptr;
48924889
}
48934890
}
4891+
#ifdef __cplusplus
4892+
extern "C"
4893+
#endif
48944894
SWIGEXPORT
48954895
#if PY_VERSION_HEX >= 0x03000000
48964896
PyObject *

0 commit comments

Comments
 (0)