(decl, wow64)
| 942 | |
| 943 | |
| 944 | def param_needs_conversion(decl, wow64): |
| 945 | if is_pointer_pointer(decl) and wow64: |
| 946 | return True |
| 947 | decl = underlying_type(decl) |
| 948 | return decl.kind == TypeKind.RECORD and \ |
| 949 | struct_needs_conversion(decl, wow64) |
| 950 | |
| 951 | |
| 952 | def callconv(cursor, prefix): |
no test coverage detected