17 lines
365 B
Python
Raw Normal View History

2022-04-16 00:02:41 +08:00
from PikaObj import *
2022-04-16 11:38:47 +08:00
class c_uint(TinyObj):
2022-04-16 00:02:41 +08:00
def __init__(self, value:int):
pass
2022-04-16 11:38:47 +08:00
class c_wchar_p(TinyObj):
2022-04-16 00:02:41 +08:00
def __init__(self, value:str):
pass
class Test(TinyObj):
def add(self, c_uint1:c_uint, c_uint2:c_uint)->int:
pass
def dc_cpuapdu_hex(self, slen:int, sendbuf:str, rlen:c_uint, rcvbuf:c_wchar_p) -> int:
2022-04-16 00:02:41 +08:00
pass