Skip to content

IDA9.0 NameError: name 'open_structs_window' is not defined #8

@Trouble-Times

Description

@Trouble-Times

The occurrence of this problem is due to the function change in ida_kernwin.cy in IDA9.0 version, Here are the solutions:

for n in Structs():
    choices[n[2]] = Commands(fptr=open_structs_window, args=[n[1]],
                             description="Jump to Structure definition of " + n[2], icon=52)

==>
for n in Structs():
choices[n[2]] = Commands(fptr=display_widget, args=[n[1]],
description="Jump to Structure definition of " + n[2], icon=52)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions