mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-27 15:49:23 +00:00
Add vendor (steam)
This commit is contained in:
17
vendor/github.com/Philipp15b/go-steam/protocol/steamlang/steamlang.go
generated
vendored
Normal file
17
vendor/github.com/Philipp15b/go-steam/protocol/steamlang/steamlang.go
generated
vendored
Normal 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
|
||||
}
|
Reference in New Issue
Block a user