/
dgrigorev
/
MicroNT
Обзор
Документация
Войти
/
dgrigorev
/
MicroNT
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
kernel/include/appmodel.h
20 строк
429 B
Дмитрий Григорьев
Add shell app model bootstrap
19 май 2026, 08:46
19 май 2026, 08:46
cb98136
Код
Авторство
О чём код?
#pragma once // appmodel.h -- MicroNT application identity/bootstrap boundary. #include "ntdef.h" namespace APPMODEL { struct AppIdentity { u32 SessionId; const char* AppId; const char* ImageName; bool Registered; }; void Init(); bool RegisterShellApp(AppIdentity& identity, u32 session_id, const char* image_name); bool ActivateShellApp(AppIdentity& identity); } // namespace APPMODEL