mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 19:00:22 +08:00
20 lines
442 B
C++
20 lines
442 B
C++
#pragma once
|
|
|
|
namespace Qv2ray
|
|
{
|
|
namespace base
|
|
{
|
|
struct QvStartupOptions
|
|
{
|
|
/// No API subsystem
|
|
bool noAPI;
|
|
/// Explicitly run as root user.
|
|
bool forceRunAsRootUser;
|
|
/// Enable Debug Log.
|
|
bool debugLog;
|
|
/// Enable Network toolbar plugin.
|
|
bool enableToolbarPlguin;
|
|
};
|
|
} // namespace base
|
|
} // namespace Qv2ray
|