implementation of enter_shell

This commit is contained in:
nova
2026-05-10 22:09:42 +02:00
parent adac32fcc1
commit b7124cbb1d

View File

@@ -278,7 +278,19 @@ void makefile(){
TODO;
}
void enter_shell(unsigned long passes, int index){
TODO;
(void*)passes; /*remove compiler warning*/
endwin();\
echo();\
curs_set(1);\
if (system(key_binding[index].black_magic)) {
}
initscr(); /* start ncurses */
noecho(); /* hide keyboard input */
curs_set(0);
status |= (STATUS_RUN_BACKEND | STATUS_RELOAD_DIRECTORY);
}
void not_implemented(unsigned long passes, int index){
(void)passes;