4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-27 16:59:23 +00:00

Add vendor (steam)

This commit is contained in:
Wim
2017-06-22 01:00:27 +02:00
parent 1f9874102a
commit 1f91461853
117 changed files with 115543 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
/*
Contains code generated from SteamKit's SteamLanguage data.
*/
package steamlang
const (
ProtoMask uint32 = 0x80000000
EMsgMask = ^ProtoMask
)
func NewEMsg(e uint32) EMsg {
return EMsg(e & EMsgMask)
}
func IsProto(e uint32) bool {
return e&ProtoMask > 0
}