| 60 | size_t GetLength() const { return GetBytes().size(); } |
| 61 | const char* GetName() const { return GetInfo().name; } |
| 62 | const char* GetDecomp() const { |
| 63 | return *GetInfo().decomp ? GetInfo().decomp : GetInfo().name; |
| 64 | } |
| 65 | Type GetResultType() const { return GetInfo().result_type; } |
| 66 | Type GetResultType2() const { return GetInfo().result_type2; } |
| 67 | Type GetParamType1() const { return GetInfo().param_types[0]; } |