(self, invkind: int)
| 404 | return itf |
| 405 | |
| 406 | def inv_kind(self, invkind: int) -> list[str]: |
| 407 | NAMES = { |
| 408 | automation.DISPATCH_METHOD: [], |
| 409 | automation.DISPATCH_PROPERTYPUT: ["propput"], |
| 410 | automation.DISPATCH_PROPERTYPUTREF: ["propputref"], |
| 411 | automation.DISPATCH_PROPERTYGET: ["propget"], |
| 412 | } |
| 413 | return NAMES[invkind] |
| 414 | |
| 415 | def func_flags(self, flags: int) -> list[str]: |
| 416 | # map FUNCFLAGS values to idl attributes |
no outgoing calls
no test coverage detected