mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
19 lines
347 B
C++
19 lines
347 B
C++
#pragma once
|
|
|
|
#include <WorkspacesLib/WorkspacesData.h>
|
|
#include <WorkspacesLib/IPCHelper.h>
|
|
|
|
class LauncherUIHelper
|
|
{
|
|
public:
|
|
LauncherUIHelper();
|
|
~LauncherUIHelper();
|
|
|
|
void LaunchUI();
|
|
void UpdateLaunchStatus(WorkspacesData::LaunchingAppStateMap launchedApps) const;
|
|
|
|
private:
|
|
DWORD m_processId;
|
|
IPCHelper m_ipcHelper;
|
|
};
|