mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
13 lines
253 B
Go
13 lines
253 B
Go
package profile
|
|
|
|
func (profile *Profile) CreateX64dbgFiles(compress_db bool) (err error) {
|
|
if err = profile.generate_x64dbg_database(compress_db); err != nil {
|
|
return
|
|
}
|
|
|
|
if err = profile.generate_x64dbg_types(); err != nil {
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|