Created
December 15, 2012 21:45
-
-
Save ElemarJR/4299538 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
| namespace WinRTComponentCpp | |
| { | |
| __declspec ( no_refcount ) inline long __stdcall | |
| :: WinRTComponentCpp :: __CalculatorActivationFactory :: | |
| __abi_Platform_Details_IActivationFactory____abi_ActivateInstance ( class Platform::Object ^* __abi_returnValue ) | |
| { | |
| long __hr = 0 ; | |
| * __abi_returnValue = nullptr ; | |
| try | |
| { | |
| auto __tempValue = ActivateInstance ( ) ; | |
| * __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