============================================================================= ExpandEnvironmentStringsEx() Adjusted for Windows 95
| 1308 | // Adjusted for Windows 95 |
| 1309 | // |
| 1310 | void ExpandEnvironmentStringsEx ( LPWSTR lpSrc, DWORD dwSrc ) |
| 1311 | { |
| 1312 | WCHAR szBuf[312]; |
| 1313 | if ( ExpandEnvironmentStrings ( lpSrc, szBuf, COUNTOF ( szBuf ) ) ) { |
| 1314 | lstrcpyn ( lpSrc, szBuf, dwSrc ); |
| 1315 | } |
| 1316 | } |
| 1317 | |
| 1318 | |
| 1319 | //============================================================================= |
no outgoing calls
no test coverage detected