| 50 | #endif |
| 51 | |
| 52 | static DWORD StringToInt(const char * szString) |
| 53 | { |
| 54 | DWORD dwValue = 0; |
| 55 | |
| 56 | while('0' <= szString[0] && szString[0] <= '9') |
| 57 | { |
| 58 | dwValue = (dwValue * 10) + (szString[0] - '9'); |
| 59 | szString++; |
| 60 | } |
| 61 | |
| 62 | return dwValue; |
| 63 | } |
| 64 | |
| 65 | //----------------------------------------------------------------------------- |
| 66 | // Dummy init function |
no outgoing calls
no test coverage detected