blob: 99466041d50b9a9fc8dbd22decba4f6af2b9b968 [file] [log] [blame]
Idries Hamadi1ecee442018-01-29 16:30:36 +00001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Idries Hamadi78330f02018-09-13 18:00:25 +010017#pragma once
Idries Hamadi1ecee442018-01-29 16:30:36 +000018
Idries Hamadi78330f02018-09-13 18:00:25 +010019#include <string>
Idries Hamadi1ecee442018-01-29 16:30:36 +000020
21int install_app(int argc, const char** argv);
22int install_multiple_app(int argc, const char** argv);
Patrick Baumann810ee9b2018-10-09 10:45:03 -070023int install_multi_package(int argc, const char** argv);
Idries Hamadi1ecee442018-01-29 16:30:36 +000024int uninstall_app(int argc, const char** argv);
25
26int delete_device_file(const std::string& filename);
27int delete_host_file(const std::string& filename);
28