Implement $V in builtin PROMPT.

This commit is contained in:
Sylvain Petreolle 2002-12-11 00:15:20 +00:00 committed by Alexandre Julliard
parent 435e2e63f4
commit 00f5094a57
1 changed files with 4 additions and 0 deletions

View File

@ -484,6 +484,10 @@ char *p, *q;
GetTimeFormat (LOCALE_USER_DEFAULT, 0, NULL, NULL, q, MAX_PATH);
while (*q) q++;
break;
case 'V':
lstrcat (q, version_string);
while (*q) q++;
break;
case '_':
*q++ = '\n';
break;