this repo has no description
1/*
2 This file is part of Darling.
3
4 Copyright (C) 2019 Lubos Dolezel
5
6 Darling is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Darling is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Darling. If not, see <http://www.gnu.org/licenses/>.
18*/
19
20
21#ifndef _sandbox_H_
22#define _sandbox_H_
23
24void* sandbox_apply(void);
25void* sandbox_apply_container(void);
26void* sandbox_compile_entitlements(void);
27void* sandbox_compile_file(void);
28void* sandbox_compile_named(void);
29void* sandbox_compile_string(void);
30void* sandbox_container_paths_iterate_items(void);
31void* sandbox_create_params(void);
32void* sandbox_free_params(void);
33void* sandbox_free_profile(void);
34void* sandbox_inspect_pid(void);
35void* sandbox_inspect_smemory(void);
36void* sandbox_set_param(void);
37void* sandbox_set_user_state_item(void);
38void* sandbox_user_state_item_buffer_create(void);
39void* sandbox_user_state_item_buffer_destroy(void);
40void* sandbox_user_state_item_buffer_send(void);
41void* sandbox_user_state_iterate_items(void);
42
43#endif