blob: 84436c7dadc9c27f0873a851a2cda5c8578ba6ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
typedef enum AnalyzeSecurityFlags {
ANALYZE_SECURITY_SHORT = 1 << 0,
ANALYZE_SECURITY_ONLY_LOADED = 1 << 1,
ANALYZE_SECURITY_ONLY_LONG_RUNNING = 1 << 2,
} AnalyzeSecurityFlags;
int do_security(int argc, char *argv[], void *userdata);
|