mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
14 lines
259 B
Python
14 lines
259 B
Python
|
from PikaObj import *
|
||
|
|
||
|
class cUint(TinyObj):
|
||
|
def __init__(self, value:int):
|
||
|
pass
|
||
|
|
||
|
class cWcharP(TinyObj):
|
||
|
def __init__(self, value:str):
|
||
|
pass
|
||
|
|
||
|
class Test(TinyObj):
|
||
|
def add(self, c_uint1:pointer, c_uint2:pointer)->int:
|
||
|
pass
|