summaryrefslogtreecommitdiffstats
path: root/applypatch/include
diff options
context:
space:
mode:
authorSen Jiang <senj@google.com>2016-01-22 13:49:07 +0100
committerSen Jiang <senj@google.com>2016-01-28 06:26:25 +0100
commit0cce9cda0c5cddf947ac42d60886293fab5d0afd (patch)
tree182fc20575c64c3cbdf7082ede3dbbdd51979a57 /applypatch/include
parentMerge "Change BCB to perform synchronous writes." (diff)
downloadandroid_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.tar
android_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.tar.gz
android_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.tar.bz2
android_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.tar.lz
android_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.tar.xz
android_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.tar.zst
android_bootable_recovery-0cce9cda0c5cddf947ac42d60886293fab5d0afd.zip
Diffstat (limited to 'applypatch/include')
-rw-r--r--applypatch/include/applypatch/imgpatch.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/applypatch/include/applypatch/imgpatch.h b/applypatch/include/applypatch/imgpatch.h
new file mode 100644
index 000000000..64d9aa9eb
--- /dev/null
+++ b/applypatch/include/applypatch/imgpatch.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2016 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.
+ */
+
+#ifndef _IMGPATCH_H
+#define _IMGPATCH_H
+
+typedef ssize_t (*SinkFn)(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