diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-01 02:13:30 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-01 02:13:30 +0000 |
commit | 52166c09d6f3fe1545d66ccec32bd5e479f26294 (patch) | |
tree | 02e4410972187f2d75e2abd29c199e6435256497 /MdePkg/Library | |
parent | 57e733d27728d6ffebd2eb4f104da832442b284f (diff) | |
download | edk2-platforms-52166c09d6f3fe1545d66ccec32bd5e479f26294.tar.xz |
Added function declaration
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@362 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/BaseLib/X64/SwitchStack.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/X64/SwitchStack.c b/MdePkg/Library/BaseLib/X64/SwitchStack.c index 3dd93825e0..64ae261263 100644 --- a/MdePkg/Library/BaseLib/X64/SwitchStack.c +++ b/MdePkg/Library/BaseLib/X64/SwitchStack.c @@ -14,6 +14,15 @@ **/
+VOID
+EFIAPI
+_SwitchStack (
+ IN SWITCH_STACK_ENTRY_POINT EntryPoint,
+ IN VOID *Context1,
+ IN VOID *Context2,
+ IN VOID *NewStack
+ );
+
/**
Transfers control to a function starting with a new stack.
|