mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): binana x64dbg-gen now generates a types file from C source headers
This commit is contained in:
parent
e3ec21ecec
commit
5d5630a6cb
19 changed files with 2961 additions and 354 deletions
13
go/profile/x64dbg.go
Normal file
13
go/profile/x64dbg.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package profile
|
||||
|
||||
func (profile *Profile) CreateX64dbgFiles(module_name string, base_address uint64) (err error) {
|
||||
if err = profile.generate_x64dbg_database(module_name, base_address); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
if err = profile.generate_x64dbg_types(); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue