mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-04-16 06:12:28 +03:00
Ignore enums with "Force32Bit" in their names
This commit is contained in:
parent
3c8a2f6cd1
commit
41c1d0da08
@ -1982,7 +1982,6 @@ namespace Steamworks
|
|||||||
FinWait = -1,
|
FinWait = -1,
|
||||||
Linger = -2,
|
Linger = -2,
|
||||||
Dead = -3,
|
Dead = -3,
|
||||||
Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -2020,7 +2019,6 @@ namespace Steamworks
|
|||||||
Misc_SteamConnectivity = 5005,
|
Misc_SteamConnectivity = 5005,
|
||||||
Misc_NoRelaySessionsToClient = 5006,
|
Misc_NoRelaySessionsToClient = 5006,
|
||||||
Misc_Max = 5999,
|
Misc_Max = 5999,
|
||||||
Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -2032,7 +2030,6 @@ namespace Steamworks
|
|||||||
SocketsInterface = 2,
|
SocketsInterface = 2,
|
||||||
ListenSocket = 3,
|
ListenSocket = 3,
|
||||||
Connection = 4,
|
Connection = 4,
|
||||||
Scope__Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -2045,7 +2042,6 @@ namespace Steamworks
|
|||||||
Float = 3,
|
Float = 3,
|
||||||
String = 4,
|
String = 4,
|
||||||
FunctionPtr = 5,
|
FunctionPtr = 5,
|
||||||
DataType__Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -2089,7 +2085,6 @@ namespace Steamworks
|
|||||||
LogLevel_PacketGaps = 16,
|
LogLevel_PacketGaps = 16,
|
||||||
LogLevel_P2PRendezvous = 17,
|
LogLevel_P2PRendezvous = 17,
|
||||||
LogLevel_SDRRelayPings = 18,
|
LogLevel_SDRRelayPings = 18,
|
||||||
Value__Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -2102,13 +2097,12 @@ namespace Steamworks
|
|||||||
BufferTooSmall = -3,
|
BufferTooSmall = -3,
|
||||||
OK = 1,
|
OK = 1,
|
||||||
OKInherited = 2,
|
OKInherited = 2,
|
||||||
Result__Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// ESteamNetworkingSocketsDebugOutputType
|
// ESteamNetworkingSocketsDebugOutputType
|
||||||
//
|
//
|
||||||
internal enum DebugOutputType : int
|
public enum NetDebugOutput : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None = 0,
|
||||||
Bug = 1,
|
Bug = 1,
|
||||||
@ -2119,7 +2113,6 @@ namespace Steamworks
|
|||||||
Verbose = 6,
|
Verbose = 6,
|
||||||
Debug = 7,
|
Debug = 7,
|
||||||
Everything = 8,
|
Everything = 8,
|
||||||
Force32Bit = 2147483647,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -72,6 +72,9 @@ namespace Generator
|
|||||||
{
|
{
|
||||||
var ename = entry.Name;
|
var ename = entry.Name;
|
||||||
|
|
||||||
|
if ( ename.Contains( "Force32Bit" ) )
|
||||||
|
continue;
|
||||||
|
|
||||||
if ( iFinished != int.MaxValue )
|
if ( iFinished != int.MaxValue )
|
||||||
ename = ename.Substring( iFinished );
|
ename = ename.Substring( iFinished );
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user