mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[appwiz]
- Don't duplicate an export - Spotted by Victor Martinez svn path=/trunk/; revision=62211
This commit is contained in:
parent
f5bb0ccda5
commit
e900d85928
2 changed files with 1 additions and 16 deletions
|
@ -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)
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue