Skip to content

Commit

Permalink
Add missing EMsg
Browse files Browse the repository at this point in the history
  • Loading branch information
xPaw committed Mar 19, 2024
1 parent e01e822 commit 6331887
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Resources/SteamLanguage/emsg.steamd
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,7 @@ enum EMsg
CMSetSecrets = 1704;
CMGetSecrets = 1705;
CMAppInfoResponseDeprecated = 1703; removed
CMRemotePlayReplyPacket = 1706;

BaseDSS = 1800; removed
DSSNewFile = 1801; removed
Expand Down Expand Up @@ -1235,6 +1236,8 @@ enum EMsg
PSGetShoppingCartContentsResponse = 5010;
PSAddWalletCreditToShoppingCart = 5011;
PSAddWalletCreditToShoppingCartResponse = 5012;
PSGetAccountCartContents = 5013;
PSGetAccountCartContentsResponse = 5014;

BaseUFSRange = 5200;
ClientUFSUploadFileRequest = 5202;
Expand Down Expand Up @@ -1974,6 +1977,7 @@ enum EMsg
ClientHello = 9805;
ClientEnableOrDisableDownloads = 9806;
ClientEnableOrDisableDownloadsResponse = 9807;
ClientFeatureGroupInfo = 9808;

ClientLANP2PBase = 9900;
ClientLANP2PRequestChunk = 9900;
Expand Down Expand Up @@ -2001,4 +2005,13 @@ enum EMsg
BaseSecretServer = 12100;
ServerSecretChanged = 12100;

BaseWG = 12200;
WGConnectionProtocolError = 12200;
WGConnectionValidateUserToken = 12201;
WGConnectionValidateUserTokenResponse = 12202;
WGConnectionLegacyWGRequest = 12203;
WGConnectionLegacyWGResponse = 12204;

ClientPendingGameLaunch = 12300;
ClientPendingGameLaunchResponse = 12301;
};
12 changes: 12 additions & 0 deletions SteamKit2/SteamKit2/Base/Generated/SteamLanguage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,7 @@ public enum EMsg
CMSessionRejected = 1703,
CMSetSecrets = 1704,
CMGetSecrets = 1705,
CMRemotePlayReplyPacket = 1706,
BaseGC = 2200,
GCCmdRevive = 2203,
GCCmdDown = 2206,
Expand Down Expand Up @@ -1083,6 +1084,8 @@ public enum EMsg
PSGetShoppingCartContentsResponse = 5010,
PSAddWalletCreditToShoppingCart = 5011,
PSAddWalletCreditToShoppingCartResponse = 5012,
PSGetAccountCartContents = 5013,
PSGetAccountCartContentsResponse = 5014,
BaseUFSRange = 5200,
ClientUFSUploadFileRequest = 5202,
ClientUFSUploadFileResponse = 5203,
Expand Down Expand Up @@ -1698,6 +1701,7 @@ public enum EMsg
ClientHello = 9805,
ClientEnableOrDisableDownloads = 9806,
ClientEnableOrDisableDownloadsResponse = 9807,
ClientFeatureGroupInfo = 9808,
ClientLANP2PBase = 9900,
ClientLANP2PRequestChunk = 9900,
ClientLANP2PRequestChunkResponse = 9901,
Expand All @@ -1719,6 +1723,14 @@ public enum EMsg
ChatServerGetPendingNotificationCountResponse = 12001,
BaseSecretServer = 12100,
ServerSecretChanged = 12100,
BaseWG = 12200,
WGConnectionProtocolError = 12200,
WGConnectionValidateUserToken = 12201,
WGConnectionValidateUserTokenResponse = 12202,
WGConnectionLegacyWGRequest = 12203,
WGConnectionLegacyWGResponse = 12204,
ClientPendingGameLaunch = 12300,
ClientPendingGameLaunchResponse = 12301,
}
public enum EResult
{
Expand Down

0 comments on commit 6331887

Please sign in to comment.