mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
23 lines
443 B
Odin
23 lines
443 B
Odin
#+build !windows
|
|
#+build !linux
|
|
#+build !darwin
|
|
package debug_trace
|
|
|
|
import "base:runtime"
|
|
|
|
_Context :: struct {
|
|
}
|
|
|
|
_init :: proc(ctx: ^Context) -> (ok: bool) {
|
|
return true
|
|
}
|
|
_destroy :: proc(ctx: ^Context) -> bool {
|
|
return true
|
|
}
|
|
_frames :: proc(ctx: ^Context, skip: uint, frames_buffer: []Frame) -> []Frame {
|
|
return nil
|
|
}
|
|
_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: Frame_Location) {
|
|
return
|
|
}
|