feat(protocan): вынеси GUI-кадрирование в общий ABI

This commit is contained in:
2026-08-31 21:02:23 +03:00
parent e6bea52db0
commit 5504104cc5
10 changed files with 340 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
"""Переносимые модули ProtoCAN и тонкая обёртка общего C99-ядра."""
from .native import NativeCore, NativeCoreUnavailable, NativeFrame, NativeParser
from .native import (
NativeCore, NativeCoreUnavailable, NativeFrame, NativeGuiFrame,
NativeGuiParser, NativeParser,
)
__all__ = ["NativeCore", "NativeCoreUnavailable", "NativeFrame", "NativeParser"]
__all__ = [
"NativeCore", "NativeCoreUnavailable", "NativeFrame", "NativeGuiFrame",
"NativeGuiParser", "NativeParser",
]