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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: TSMasterAPI
3
- Version: 2024.6.26.1137
3
+ Version: 2024.6.30.1140
4
4
  Summary: Use TSMaster hardware
5
5
  Home-page: UNKNOWN
6
6
  Author: seven
@@ -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),
@@ -0,0 +1,2 @@
1
+ from .TSAPI import *
2
+ __version__ = 'v2024.6.30.1140'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: TSMasterAPI
3
- Version: 2024.6.26.1137
3
+ Version: 2024.6.30.1140
4
4
  Summary: Use TSMaster hardware
5
5
  Home-page: UNKNOWN
6
6
  Author: seven
@@ -1,2 +0,0 @@
1
- from .TSAPI import *
2
- __version__ = 'v2024.6.26.1137'