From 07c649bf1b3f361769e050db5ae9419c3454291e Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Mon, 19 May 2003 18:55:26 +0000 Subject: [PATCH] Added support for the %L escape. --- dlls/shell32/shlexec.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dlls/shell32/shlexec.c b/dlls/shell32/shlexec.c index 752e7c55fe7..5f533041116 100644 --- a/dlls/shell32/shlexec.c +++ b/dlls/shell32/shlexec.c @@ -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++; -- 2.11.4.GIT