add drivers and interface and task classes

This commit is contained in:
2025-12-14 00:23:15 -06:00
parent 54c9672ba0
commit c4644105a7
11 changed files with 202 additions and 21 deletions

8
src/common.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
enum STATUS {
OKAY = 0,
ERROR = -1,
NOT_IMPLEMENTED = -2,
};