summaryrefslogtreecommitdiff
path: root/Cryptlib/Library/BaseMemoryLib.h
diff options
context:
space:
mode:
authorSteve Langasek <steve.langasek@canonical.com>2014-10-07 16:20:02 -0700
committerSteve Langasek <steve.langasek@canonical.com>2014-10-07 16:20:02 -0700
commit4960f3580e74352a37437801c2e633ff36b84943 (patch)
treebfb522568f5adab579eea3e47a25b1c4e23af9b6 /Cryptlib/Library/BaseMemoryLib.h
parent172647da18bb3017f2a532b86d8083559081e017 (diff)
downloadefi-boot-shim-4960f3580e74352a37437801c2e633ff36b84943.tar.gz
efi-boot-shim-4960f3580e74352a37437801c2e633ff36b84943.zip
Update debian/patches/prototypes with some new declarations needed for
openssl 0.9.8za update.
Diffstat (limited to 'Cryptlib/Library/BaseMemoryLib.h')
-rw-r--r--Cryptlib/Library/BaseMemoryLib.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Cryptlib/Library/BaseMemoryLib.h b/Cryptlib/Library/BaseMemoryLib.h
index 6b11bcef..471a055a 100644
--- a/Cryptlib/Library/BaseMemoryLib.h
+++ b/Cryptlib/Library/BaseMemoryLib.h
@@ -8,4 +8,34 @@ ScanMem8 (
IN CHAR8 Value
);
+UINT32
+WriteUnaligned32(
+ UINT32 *Buffer,
+ UINT32 Value
+ );
+
+CHAR8 *
+AsciiStrCat(
+ CHAR8 *Destination,
+ CHAR8 *Source
+ );
+
+CHAR8 *
+AsciiStrCpy(
+ CHAR8 *Destination,
+ CHAR8 *Source
+ );
+
+CHAR8 *
+AsciiStrnCpy(
+ CHAR8 *Destination,
+ CHAR8 *Source,
+ UINTN count
+ );
+
+UINTN
+AsciiStrSize(
+ CHAR8 *string
+ );
+
#endif