Generation

This commit is contained in:
Garry Newman 2020-02-22 09:58:19 +00:00
parent c8d4d8cab7
commit 188c938474
2 changed files with 0 additions and 23 deletions

View File

@ -364,17 +364,5 @@ namespace Steamworks
return new CallResult<DurationControl_t>( returnValue );
}
#region FunctionMeta
[DllImport( Platform.LibraryName, EntryPoint = "SteamAPI_ISteamUser_BSetDurationControlOnlineState", CallingConvention = Platform.CC)]
[return: MarshalAs( UnmanagedType.I1 )]
private static extern bool _BSetDurationControlOnlineState( IntPtr self, DurationControlOnlineState eNewState );
#endregion
internal bool BSetDurationControlOnlineState( DurationControlOnlineState eNewState )
{
var returnValue = _BSetDurationControlOnlineState( Self, eNewState );
return returnValue;
}
}
}

View File

@ -551,17 +551,6 @@ namespace Steamworks
ExitSoon_Night = 7,
}
//
// EDurationControlOnlineState
//
internal enum DurationControlOnlineState : int
{
Invalid = 0,
Offline = 1,
Online = 2,
OnlineHighPri = 3,
}
//
// EGameSearchErrorCode_t
//