(decl)
| 932 | |
| 933 | |
| 934 | def is_pointer_pointer(decl): |
| 935 | if type(decl) is Cursor: |
| 936 | decl = decl.type |
| 937 | decl = decl.get_canonical() |
| 938 | if decl.kind != TypeKind.POINTER: |
| 939 | return False |
| 940 | decl = decl.get_pointee().get_canonical() |
| 941 | return decl.kind == TypeKind.POINTER |
| 942 | |
| 943 | |
| 944 | def param_needs_conversion(decl, wow64): |
no outgoing calls
no test coverage detected