TSMasterAPI 2024.6.26.1137__tar.gz → 2024.6.30.1140__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/PKG-INFO +1 -1
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSAPI.py +12 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSStruct.py +6 -0
- TSMasterAPI-2024.6.30.1140/TSMasterAPI/__init__.py +2 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI.egg-info/PKG-INFO +1 -1
- TSMasterAPI-2024.6.26.1137/TSMasterAPI/__init__.py +0 -2
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/README.rst +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSCallback.py +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSDirver.py +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSEnum.py +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSFibex_parse.py +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI/TSMasterAPI.py +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI.egg-info/SOURCES.txt +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI.egg-info/dependency_links.txt +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI.egg-info/top_level.txt +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/setup.cfg +0 -0
- {TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/setup.py +0 -0
@@ -5023,3 +5023,15 @@ get_active_application_list = dll.get_active_application_list
|
|
5023
5023
|
get_active_application_list.restype = s32
|
5024
5024
|
get_active_application_list.argtypes = [ppchar]
|
5025
5025
|
|
5026
|
+
#arg[0] ASrc
|
5027
|
+
#arg[1] ADest
|
5028
|
+
encode_string = dll.encode_string
|
5029
|
+
encode_string.restype = s32
|
5030
|
+
encode_string.argtypes = [pchar,ppchar]
|
5031
|
+
|
5032
|
+
#arg[0] ASrc
|
5033
|
+
#arg[1] ADest
|
5034
|
+
decode_string = dll.decode_string
|
5035
|
+
decode_string.restype = s32
|
5036
|
+
decode_string.argtypes = [pchar,ppchar]
|
5037
|
+
|
@@ -817,6 +817,12 @@ class Tip4_addr_t(Structure):
|
|
817
817
|
]
|
818
818
|
Pip4_addr_t = POINTER(Tip4_addr_t)
|
819
819
|
|
820
|
+
class Teth_addr_t(Structure):
|
821
|
+
_pack_ = 1
|
822
|
+
_fields_ =[('addr',u8*6),
|
823
|
+
]
|
824
|
+
Peth_addr_t = POINTER(Teth_addr_t)
|
825
|
+
|
820
826
|
class Tip6_addr_t(Structure):
|
821
827
|
_pack_ = 1
|
822
828
|
_fields_ =[('addr',u32*4),
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI.egg-info/dependency_links.txt
RENAMED
File without changes
|
{TSMasterAPI-2024.6.26.1137 → TSMasterAPI-2024.6.30.1140}/TSMasterAPI.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|