summaryrefslogtreecommitdiffstats
path: root/applypatch/include/applypatch/imgpatch.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-12-28 19:05:45 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-12-28 19:05:45 +0100
commit344c8eb453f162745cde8f7ae9d7506c6a3ec0ca (patch)
tree500cce081dab6124dd7320f160f54291dc00013f /applypatch/include/applypatch/imgpatch.h
parentMerge "tests: Add test coverage for DirUtil." (diff)
parentAdd tests for imgdiff. (diff)
downloadandroid_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.tar
android_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.tar.gz
android_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.tar.bz2
android_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.tar.lz
android_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.tar.xz
android_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.tar.zst
android_bootable_recovery-344c8eb453f162745cde8f7ae9d7506c6a3ec0ca.zip
Diffstat (limited to 'applypatch/include/applypatch/imgpatch.h')
-rw-r--r--applypatch/include/applypatch/imgpatch.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/applypatch/include/applypatch/imgpatch.h b/applypatch/include/applypatch/imgpatch.h
index 64d9aa9eb..6549f79f0 100644
--- a/applypatch/include/applypatch/imgpatch.h
+++ b/applypatch/include/applypatch/imgpatch.h
@@ -14,13 +14,15 @@
* limitations under the License.
*/
-#ifndef _IMGPATCH_H
-#define _IMGPATCH_H
+#ifndef _APPLYPATCH_IMGPATCH_H
+#define _APPLYPATCH_IMGPATCH_H
-typedef ssize_t (*SinkFn)(const unsigned char*, ssize_t, void*);
+#include <sys/types.h>
+
+using SinkFn = ssize_t (*)(const unsigned char*, ssize_t, void*);
int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
const unsigned char* patch_data, ssize_t patch_size,
SinkFn sink, void* token);
-#endif //_IMGPATCH_H
+#endif // _APPLYPATCH_IMGPATCH_H