library-go/errs/error_code.go

8 lines
96 B
Go
Raw Normal View History

2024-11-13 04:03:14 +00:00
package errs
type ErrorCode uint32
func (e ErrorCode) ToUint32() uint32 {
return uint32(e)
}