mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-02-26 13:31:17 +03:00
Hide structs starting with "PS3"
This commit is contained in:
parent
93e21a5f79
commit
8db2b46729
@ -1523,20 +1523,6 @@ namespace Steamworks.Data
|
||||
#endregion
|
||||
}
|
||||
|
||||
[StructLayout( LayoutKind.Sequential, Pack = Platform.StructPlatformPackSize )]
|
||||
internal struct PS3TrophiesInstalled_t : ICallbackData
|
||||
{
|
||||
internal ulong GameID; // m_nGameID uint64
|
||||
internal Result Result; // m_eResult EResult
|
||||
internal ulong RequiredDiskSpace; // m_ulRequiredDiskSpace uint64
|
||||
|
||||
#region SteamCallback
|
||||
public static int _datasize = System.Runtime.InteropServices.Marshal.SizeOf( typeof(PS3TrophiesInstalled_t) );
|
||||
public int DataSize => _datasize;
|
||||
public CallbackType CallbackType => CallbackType.PS3TrophiesInstalled;
|
||||
#endregion
|
||||
}
|
||||
|
||||
[StructLayout( LayoutKind.Sequential, Pack = Platform.StructPlatformPackSize )]
|
||||
internal struct GlobalStatsReceived_t : ICallbackData
|
||||
{
|
||||
|
@ -143,6 +143,8 @@ public static class Cleanup
|
||||
|
||||
internal static bool IsDeprecated( string name )
|
||||
{
|
||||
if ( name.StartsWith( "PS3" ) ) return true;
|
||||
|
||||
if ( name == "SocketStatusCallback_t" ) return true;
|
||||
if ( name == "SNetSocketConnectionType" ) return true;
|
||||
if ( name == "SNetSocketState" ) return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user