Commit 07c649bf authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Added support for the %L escape.

parent 5674b830
...@@ -93,6 +93,16 @@ static BOOL argify(char* res, int len, const char* fmt, const char* lpFile) ...@@ -93,6 +93,16 @@ static BOOL argify(char* res, int len, const char* fmt, const char* lpFile)
} }
} }
break; 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); default: FIXME("Unknown escape sequence %%%c\n", *fmt);
} }
fmt++; fmt++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment