package blazesym
/*
#include "blazesym.h"
*/
import "C"
import "unsafe"
// GsymFileSource describes the parameters to load symbols and debug information from a Gsym file.
// See: https://docs.rs/blazesym-c/latest/blazesym_c/struct.blaze_symbolize_src_gsym_file.html
type GsymFileSource struct
// newGsymFileSource creates a new gsym file source with the path to the Gsym file.
// See: https://docs.rs/blazesym-c/latest/blazesym_c/struct.blaze_symbolize_src_gsym_file.html#structfield.path
func newGsymFileSource(path string) *GsymFileSource
func cleanupGsymFileSourceStruct(gsym *C.blaze_symbolize_src_gsym_file)