Example #1
0
func (dst *RWops) WriteLE64(value uint64) uint {
	if dst == nil {
		return 0
	}
	_dst := (*C.SDL_RWops)(unsafe.Pointer(dst))
	_value := (C.Uint64)(value)
	return (uint)(C.SDL_WriteLE64(_dst, _value))
}
Example #2
0
func (dst *RWops) WriteLE64(value uint64) uint {
	if dst == nil {
		return 0
	}
	return uint(C.SDL_WriteLE64(dst.cptr(), C.Uint64(value)))
}