| Line 866... |
Line 866... |
| 866 |
return TRUE; |
866 |
return TRUE; |
| 867 |
|
867 |
|
| 868 |
// extract the sub-string on left side of the '=' |
868 |
// extract the sub-string on left side of the '=' |
| 869 |
LPTSTR psz = new TCHAR[_tcslen(lpString) + 1]; |
869 |
LPTSTR psz = new TCHAR[_tcslen(lpString) + 1]; |
| 870 |
|
870 |
|
| 871 |
#ifndef _VS6_USED |
871 |
//#ifndef _VS6_USED |
| 872 |
int i; |
872 |
int i; |
| 873 |
#endif |
873 |
//#endif |
| 874 |
|
874 |
|
| 875 |
for (int i = 0; &lpString[i] < p; i++) |
875 |
for (int i = 0; &lpString[i] < p; i++) |
| 876 |
psz[i] = lpString[i]; |
876 |
psz[i] = lpString[i]; |
| 877 |
psz[i] = _T('\0'); |
877 |
psz[i] = _T('\0'); |
| 878 |
|
878 |
|