summaryrefslogtreecommitdiffstats
path: root/updater/include
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2019-01-16 01:50:12 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-01-16 01:50:12 +0100
commitfec7ff6300d8c4541daf71102c02aa70f1b8084c (patch)
treef9d54c7b2bff11e9f4228738c57d561f27bcac7a /updater/include
parentMerge "Create stash dir recursively." am: 7a0b65472b am: 32932a48f9 (diff)
parentMerge "updater: add functions to modify dynamic partition metadata" am: 27aa9404fc (diff)
downloadandroid_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.tar
android_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.tar.gz
android_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.tar.bz2
android_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.tar.lz
android_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.tar.xz
android_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.tar.zst
android_bootable_recovery-fec7ff6300d8c4541daf71102c02aa70f1b8084c.zip
Diffstat (limited to 'updater/include')
-rw-r--r--updater/include/private/utils.h21
-rw-r--r--updater/include/updater/dynamic_partitions.h19
2 files changed, 40 insertions, 0 deletions
diff --git a/updater/include/private/utils.h b/updater/include/private/utils.h
new file mode 100644
index 000000000..33cf6155d
--- /dev/null
+++ b/updater/include/private/utils.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#pragma once
+
+#include <string>
+
+bool SetUpdatedMarker(const std::string& marker);
diff --git a/updater/include/updater/dynamic_partitions.h b/updater/include/updater/dynamic_partitions.h
new file mode 100644
index 000000000..31cf859c6
--- /dev/null
+++ b/updater/include/updater/dynamic_partitions.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#pragma once
+
+void RegisterDynamicPartitionsFunctions();