mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
20 lines
496 B
Python
20 lines
496 B
Python
|
|
recipe = {
|
|
"enum_const_created" : {
|
|
"method_name" : "enum_member_created",
|
|
"add_params" : [
|
|
{ "name" : "id", "type" : "enum_t" },
|
|
{ "name" : "cid", "type" : "const_t" },
|
|
],
|
|
},
|
|
"enum_const_deleted" : {
|
|
"method_name" : "enum_member_deleted",
|
|
"add_params" : [
|
|
{ "name" : "id", "type" : "enum_t" },
|
|
{ "name" : "cid", "type" : "const_t" },
|
|
],
|
|
},
|
|
}
|
|
|
|
default_rtype = "void"
|