18 lines
487 B
C
18 lines
487 B
C
// shellTaskMgr.h — System Task Manager
|
|
//
|
|
// The Task Manager is a shell-level component, not tied to any app.
|
|
// It is always available via Ctrl+Esc and persists even if the desktop
|
|
// app (Program Manager) is terminated.
|
|
|
|
#ifndef SHELL_TASKMGR_H
|
|
#define SHELL_TASKMGR_H
|
|
|
|
#include "dvxApp.h"
|
|
|
|
// Open or raise the Task Manager window.
|
|
void shellTaskMgrOpen(AppContextT *ctx);
|
|
|
|
// Refresh the task list (called by desktop update notification).
|
|
void shellTaskMgrRefresh(void);
|
|
|
|
#endif
|