mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-21 11:20:49 +08:00
19 lines
396 B
C++
19 lines
396 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;
|
|
};
|
|
}
|
|
}
|