| 112 | } |
| 113 | |
| 114 | size_t GetParamsSize(DHooksCallback *dg)//Get the full size, this is for creating the STACK. |
| 115 | { |
| 116 | size_t res = 0; |
| 117 | |
| 118 | for (int i = dg->params.size() - 1; i >= 0; i--) |
| 119 | { |
| 120 | res += dg->params.at(i).size; |
| 121 | } |
| 122 | |
| 123 | return res; |
| 124 | } |
| 125 | |
| 126 | DataType_t DynamicHooks_ConvertParamTypeFrom(HookParamType type) |
| 127 | { |
no test coverage detected