cleanup: namespace Montauk (capital M) => montauk::abi

This commit is contained in:
2026-06-16 09:09:16 +02:00
parent b091af7653
commit e3dc1e881d
165 changed files with 758 additions and 758 deletions
+3 -3
View File
@@ -917,7 +917,7 @@ extern "C" void _start() {
ui_render();
// Create socket and connect
irc.fd = montauk::socket(Montauk::SOCK_TCP);
irc.fd = montauk::socket(montauk::abi::SOCK_TCP);
if (irc.fd < 0) {
msg_add("\033[31m*** Failed to create socket\033[0m");
ui_render();
@@ -955,7 +955,7 @@ extern "C" void _start() {
// Poll keyboard
if (montauk::is_key_available()) {
Montauk::KeyEvent ev;
montauk::abi::KeyEvent ev;
montauk::getkey(&ev);
if (!ev.pressed) {
@@ -1029,7 +1029,7 @@ extern "C" void _start() {
} else {
if (!dirty) {
montauk::wait_handle(irc.fd,
Montauk::IPC_SIGNAL_READABLE | Montauk::IPC_SIGNAL_PEER_CLOSED,
montauk::abi::IPC_SIGNAL_READABLE | montauk::abi::IPC_SIGNAL_PEER_CLOSED,
10);
continue;
}