|
|
@@ -16,6 +16,9 @@ class void_p:
|
|
|
|
|
|
def hex(self) -> str: ...
|
|
|
|
|
|
+ @property
|
|
|
+ def _value(self) -> int: ...
|
|
|
+
|
|
|
def read_char(self) -> int: ...
|
|
|
def read_uchar(self) -> int: ...
|
|
|
def read_short(self) -> int: ...
|
|
|
@@ -148,3 +151,6 @@ class _PointerLike(Generic[T]):
|
|
|
def __eq__(self, other) -> bool: ...
|
|
|
def __ne__(self, other) -> bool: ...
|
|
|
def __hash__(self) -> int: ...
|
|
|
+
|
|
|
+ @property
|
|
|
+ def _value(self) -> int: ...
|