mirror of
https://github.com/GaryOderNichts/DRXUtil.git
synced 2024-10-31 22:55:09 +01:00
18 lines
175 B
C++
18 lines
175 B
C++
#pragma once
|
|
|
|
namespace ProcUI
|
|
{
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
bool IsRunning();
|
|
|
|
void StopRunning();
|
|
|
|
void SetHomeButtonMenuEnabled(bool enabled);
|
|
|
|
} // namespace ProcUI
|
|
|