| 719 | } |
| 720 | |
| 721 | const char* LinkageTypeString(int type) |
| 722 | { |
| 723 | switch (type) { |
| 724 | case 0: return "Export"; |
| 725 | case 1: return "Import"; |
| 726 | |
| 727 | default: return "Bad"; |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | const char* FuncParamAttrString(int attr) |
| 732 | { |
nothing calls this directly
no outgoing calls
no test coverage detected