| 30 | } |
| 31 | |
| 32 | static DWORD StringToInt(const char * szString) |
| 33 | { |
| 34 | DWORD dwValue = 0; |
| 35 | |
| 36 | while('0' <= szString[0] && szString[0] <= '9') |
| 37 | { |
| 38 | dwValue = (dwValue * 10) + (szString[0] - '9'); |
| 39 | szString++; |
| 40 | } |
| 41 | |
| 42 | return dwValue; |
| 43 | } |
| 44 | |
| 45 | //----------------------------------------------------------------------------- |
| 46 | // Dummy init function |
no outgoing calls
no test coverage detected