- Don't duplicate an export
- Spotted by Victor Martinez

svn path=/trunk/; revision=62211
This commit is contained in:
Giannis Adamopoulos 2014-02-16 12:21:52 +00:00
parent f5bb0ccda5
commit e900d85928
2 changed files with 1 additions and 16 deletions

View file

@ -1,4 +1,4 @@
@ stdcall CPlApplet(ptr long ptr ptr)
@ stdcall NewLinkHere(ptr long ptr ptr)
@ stdcall NewLinkHere(ptr long ptr ptr) NewLinkHereA
@ stdcall NewLinkHereA(ptr long ptr ptr)
@ stdcall NewLinkHereW(ptr long ptr ptr)

View file

@ -391,21 +391,6 @@ ShowCreateShortcutWizard(HWND hwndCPl, LPWSTR szPath)
return TRUE;
}
LONG
CALLBACK
NewLinkHere(HWND hwndCPl, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
{
WCHAR szFile[MAX_PATH];
if (MultiByteToWideChar(CP_ACP, 0, (LPSTR) lParam1, -1, szFile, MAX_PATH))
{
return ShowCreateShortcutWizard(hwndCPl, szFile);
}
return -1;
}
LONG
CALLBACK
NewLinkHereW(HWND hwndCPl, UINT uMsg, LPARAM lParam1, LPARAM lParam2)