/
dgrigorev
/
MicroNT
Обзор
Документация
Войти
/
dgrigorev
/
MicroNT
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
kernel/include/explorer.h
20 строк
400 B
Дмитрий Григорьев
Add Explorer shell owner
18 май 2026, 21:58
18 май 2026, 21:58
8d8c3a3
Код
Авторство
О чём код?
#pragma once // explorer.h -- MicroNT shell owner boundary. #include "ntdef.h" #include "process.h" namespace EXPLORER { struct Shell { u32 SessionId; KProcess* Process; KThread* Thread; bool Registered; }; void Init(); bool RegisterShell(Shell& shell, u32 session_id, KProcess* process, KThread* thread); bool StartShellThread(Shell& shell); } // namespace EXPLORER