| 97 | struct FunctionListInfo |
| 98 | { |
| 99 | FunctionListInfo(): list(NULL), count(0){} |
| 100 | FunctionListInfo(unsigned *list, unsigned count): list(list), count(count){} |
| 101 | unsigned *list; |
| 102 | unsigned count; |
nothing calls this directly
no outgoing calls
no test coverage detected