| 111 | } |
| 112 | |
| 113 | unsigned int GetRandomUin() { |
| 114 | return RandomPicker(10000, UINT_MAX); |
| 115 | } |
| 116 | |
| 117 | unsigned int GetRandomUin(unsigned int minUin, unsigned int maxUin) { |
| 118 | return RandomPicker(minUin, maxUin); |
nothing calls this directly
no test coverage detected