@ -122,7 +122,7 @@ namespace Epic.OnlineServices.Platform
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
int inOutBufferLength = CountrycodeMaxLength + 1 ;
int inOutBufferLength = CountrycodeMaxLength + 1 ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength , out _ ) ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetActiveCountryCode ( InnerHandle , localUserIdInnerHandle , outBufferAddress , ref inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetActiveCountryCode ( InnerHandle , localUserIdInnerHandle , outBufferAddress , ref inOutBufferLength ) ;
@ -160,7 +160,7 @@ namespace Epic.OnlineServices.Platform
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
int inOutBufferLength = LocalecodeMaxLength + 1 ;
int inOutBufferLength = LocalecodeMaxLength + 1 ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength , out _ ) ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetActiveLocaleCode ( InnerHandle , localUserIdInnerHandle , outBufferAddress , ref inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetActiveLocaleCode ( InnerHandle , localUserIdInnerHandle , outBufferAddress , ref inOutBufferLength ) ;
@ -379,7 +379,7 @@ namespace Epic.OnlineServices.Platform
{
{
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
int inOutBufferLength = CountrycodeMaxLength + 1 ;
int inOutBufferLength = CountrycodeMaxLength + 1 ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength , out _ ) ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetOverrideCountryCode ( InnerHandle , outBufferAddress , ref inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetOverrideCountryCode ( InnerHandle , outBufferAddress , ref inOutBufferLength ) ;
@ -411,7 +411,7 @@ namespace Epic.OnlineServices.Platform
{
{
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
System . IntPtr outBufferAddress = System . IntPtr . Zero ;
int inOutBufferLength = LocalecodeMaxLength + 1 ;
int inOutBufferLength = LocalecodeMaxLength + 1 ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength , out _ ) ;
Helper . TryMarshalAllocate ( ref outBufferAddress , inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetOverrideLocaleCode ( InnerHandle , outBufferAddress , ref inOutBufferLength ) ;
var funcResult = Bindings . EOS_Platform_GetOverrideLocaleCode ( InnerHandle , outBufferAddress , ref inOutBufferLength ) ;