summaryrefslogtreecommitdiffstats
path: root/updater/install.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-10-11 00:48:37 +0200
committerTao Bao <tbao@google.com>2016-10-11 01:49:50 +0200
commit0c7839ac14a00f32d740c23ddf6df65f2757ece5 (patch)
tree09167517080321a786bee0f332f72461156002cc /updater/install.h
parentMerge "Update the header path for ext4_utils." (diff)
downloadandroid_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.tar
android_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.tar.gz
android_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.tar.bz2
android_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.tar.lz
android_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.tar.xz
android_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.tar.zst
android_bootable_recovery-0c7839ac14a00f32d740c23ddf6df65f2757ece5.zip
Diffstat (limited to '')
-rw-r--r--updater/include/updater/install.h (renamed from updater/install.h)7
1 files changed, 4 insertions, 3 deletions
diff --git a/updater/install.h b/updater/include/updater/install.h
index b3b8a4dd5..8d6ca4728 100644
--- a/updater/install.h
+++ b/updater/include/updater/install.h
@@ -17,11 +17,12 @@
#ifndef _UPDATER_INSTALL_H_
#define _UPDATER_INSTALL_H_
+struct State;
+
void RegisterInstallFunctions();
// uiPrintf function prints msg to screen as well as logs
-void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) __attribute__((__format__(printf, 2, 3)));
-
-static int make_parents(char* _Nonnull name);
+void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...)
+ __attribute__((__format__(printf, 2, 3)));
#endif