library-go/errs/error_code.go

8 lines
96 B
Go

package errs
type ErrorCode uint32
func (e ErrorCode) ToUint32() uint32 {
return uint32(e)
}