mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
9da2466609
- It also provides typing info (close #650) - Enhance the test suite - Remove deprecated PE functions
24 lines
849 B
Python
24 lines
849 B
Python
from typing import ClassVar
|
|
|
|
import lief.Android # type: ignore
|
|
|
|
class ANDROID_VERSIONS:
|
|
__members__: ClassVar[dict] = ... # read-only
|
|
UNKNOWN: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_601: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_700: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_710: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_712: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_800: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_810: ClassVar[ANDROID_VERSIONS] = ...
|
|
VERSION_900: ClassVar[ANDROID_VERSIONS] = ...
|
|
__entries: ClassVar[dict] = ...
|
|
def __init__(self, value: int) -> None: ...
|
|
@property
|
|
def name(self) -> str: ...
|
|
@property
|
|
def value(self) -> int: ...
|
|
|
|
def code_name(version: lief.Android.ANDROID_VERSIONS) -> str: ...
|
|
def version_string(version: lief.Android.ANDROID_VERSIONS) -> str: ...
|