13 lines
403 B
C#
13 lines
403 B
C#
namespace Steamworks
|
|
{
|
|
public enum ESteamNetworkingGetConfigValueResult
|
|
{
|
|
k_ESteamNetworkingGetConfigValue_BadValue = -1,
|
|
k_ESteamNetworkingGetConfigValue_BadScopeObj = -2,
|
|
k_ESteamNetworkingGetConfigValue_BufferTooSmall = -3,
|
|
k_ESteamNetworkingGetConfigValue_OK = 1,
|
|
k_ESteamNetworkingGetConfigValue_OKInherited = 2,
|
|
k_ESteamNetworkingGetConfigValueResult__Force32Bit = int.MaxValue
|
|
}
|
|
}
|