Bindings: Python: Add coremini functions

This commit is contained in:
Kyle Schwarz
2025-02-19 17:38:07 +00:00
parent 77b3564677
commit a0c8cc62df
6 changed files with 96 additions and 29 deletions
+4
View File
@@ -21,6 +21,8 @@ void init_gptpstatusmessage(pybind11::module_&);
void init_mdiomessage(pybind11::module_&);
void init_ethernetstatusmessage(pybind11::module_&);
void init_macsecmessage(pybind11::module_&);
void init_scriptstatusmessage(pybind11::module_&);
void init_diskdriver(pybind11::module_&);
void init_device(pybind11::module_&);
void init_messagefilter(pybind11::module_&);
void init_messagecallback(pybind11::module_&);
@@ -47,8 +49,10 @@ PYBIND11_MODULE(icsneopy, m) {
init_mdiomessage(m);
init_ethernetstatusmessage(m);
init_macsecmessage(m);
init_scriptstatusmessage(m);
init_messagefilter(m);
init_messagecallback(m);
init_diskdriver(m);
init_device(m);
m.def("find_all_devices", &FindAllDevices);