Added support for the %L escape.

This commit is contained in:
Aric Stewart 2003-05-19 18:55:26 +00:00 committed by Alexandre Julliard
parent 5674b8308e
commit 07c649bf1b

View file

@ -93,6 +93,16 @@ static BOOL argify(char* res, int len, const char* fmt, const char* lpFile)
}
}
break;
/*
* IE uses this alot for activating things such as windows media
* player. This is not verified to be fully correct but it appears
* to work just fine.
*/
case 'L':
strcpy(res,lpFile);
res += strlen(lpFile);
break;
default: FIXME("Unknown escape sequence %%%c\n", *fmt);
}
fmt++;