mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 03:40:08 +00:00
Fix signature
This commit is contained in:
@@ -12,7 +12,7 @@ _init :: proc(ctx: ^Context) -> (ok: bool) {
|
|||||||
_destroy :: proc(ctx: ^Context) -> bool {
|
_destroy :: proc(ctx: ^Context) -> bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
_frames :: proc(ctx: ^Context, skip: uint, allocator: runtime.Allocator) -> []Frame {
|
_frames :: proc(ctx: ^Context, skip: uint, frames_buffer: []Frame) -> []Frame {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: runtime.Source_Code_Location) {
|
_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: runtime.Source_Code_Location) {
|
||||||
|
|||||||
Reference in New Issue
Block a user