4 /* This part of the code must be in C because the C++ interface to COM
8 make_link_2 (char *exepath, char *args, char *icon, char *lname)
12 WCHAR widepath [_MAX_PATH];
14 CoCreateInstance (&CLSID_ShellLink, NULL,
15 CLSCTX_INPROC_SERVER, &IID_IShellLink, (LPVOID *) & sl);
16 sl->lpVtbl->QueryInterface (sl, &IID_IPersistFile, (void **) &pf);
18 sl->lpVtbl->SetPath (sl, exepath);
19 sl->lpVtbl->SetArguments (sl, args);
20 sl->lpVtbl->SetIconLocation (sl, icon, 0);
22 MultiByteToWideChar (CP_ACP, 0, lname, -1, widepath, _MAX_PATH);
23 pf->lpVtbl->Save (pf, widepath, TRUE);
25 pf->lpVtbl->Release (pf);
26 sl->lpVtbl->Release (sl);