Skip to content

Instantly share code, notes, and snippets.

@ElemarJR
Created December 15, 2012 23:03
Show Gist options
  • Select an option

  • Save ElemarJR/4300248 to your computer and use it in GitHub Desktop.

Select an option

Save ElemarJR/4300248 to your computer and use it in GitHub Desktop.
__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