Mitchell Hashimoto 314f9287b1 Update Zig (#164)
* update zig

* pkg/fontconfig: clean up @as

* pkg/freetype,harfbuzz: clean up @as

* pkg/imgui: clean up @as

* pkg/macos: clean up @as

* pkg/pixman,utf8proc: clean up @as

* clean up @as

* lots more @as cleanup

* undo flatpak changes

* clean up @as
2023-06-30 12:15:31 -07:00

31 lines
770 B
Zig

const std = @import("std");
const Allocator = std.mem.Allocator;
const foundation = @import("../foundation.zig");
const c = @import("c.zig");
pub const Data = opaque {
pub fn createWithBytesNoCopy(data: []const u8) Allocator.Error!*Data {
return @as(
?*Data,
@ptrFromInt(@intFromPtr(c.CFDataCreateWithBytesNoCopy(
null,
data.ptr,
@intCast(data.len),
c.kCFAllocatorNull,
))),
) orelse error.OutOfMemory;
}
pub fn release(self: *Data) void {
foundation.CFRelease(self);
}
};
test {
//const testing = std.testing;
var raw = "hello world";
const data = try Data.createWithBytesNoCopy(raw);
defer data.release();
}