Created
December 15, 2012 23:03
-
-
Save ElemarJR/4300248 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __declspec ( no_refcount ) inline long __stdcall :: WinRTComponentCpp :: Calculator :: | |
| __abi_WinRTComponentCpp___ICalculatorPublicNonVirtuals____abi_Add ( int a , int b , int * __abi_returnValue ) | |
| { | |
| long __hr = 0 ; | |
| * __abi_returnValue = 0 ; | |
| try | |
| { | |
| auto __tempValue = Add ( a , b ) ; | |
| * __abi_returnValue = __tempValue ; | |
| } | |
| catch ( :: Platform :: Exception ^ __param0 ) | |
| { | |
| __hr = Platform :: Details :: ReCreateFromException ( __param0 ) ; | |
| } | |
| catch ( ... ) | |
| { | |
| __abi_FailFast ( ) ; | |
| } | |
| return __hr ; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment