annotate netinstall/mklink2.c @ 3025:facf3239ba30
[xemacs-hg @ 2005-10-25 11:16:19 by ben]
rename new->new_, convert 'foo to `foo'
EmacsFrame.c, ExternalClient.c, ExternalShell.c, chartab.c, cmdloop.c, compiler.h, console.c, database.c, device-msw.c, device-x.c, device.c, doc.c, dragdrop.c, eval.c, event-msw.c, event-stream.c, events.c, extents.c, file-coding.c, fns.c, frame-tty.c, frame.c, gpmevent.c, gutter.c, hash.c, imgproc.c, indent.c, keymap.c, lisp-union.h, macros.c, malloc.c, marker.c, menubar-x.c, menubar.c, mule-charset.c, number.c, process.c, profile.h, ralloc.c, redisplay.c, select-common.h, select.c, syntax.c, sysfile.h, sysproc.h, systime.h, syswindows.h, toolbar.c, tooltalk.c, tparam.c, unexaix.c, unexalpha.c, unexconvex.c, unexec.c, unexhp9k800.c, unexmips.c, unicode.c, window.c: new -> new_.
'foo -> `foo'.
lwlib-internal.h: redo assert macros to follow lisp.h and not trigger warnings.
lwlib.c, xlwtabs.c: new -> new_.
author |
ben |
date |
Tue, 25 Oct 2005 11:16:49 +0000 |
parents |
3078fd1074e8 |
children |
|
rev |
line source |
448
|
1 #include "win32.h"
|
|
2 #include "shlobj.h"
|
|
3
|
|
4 /* This part of the code must be in C because the C++ interface to COM
|
|
5 doesn't work. */
|
|
6
|
|
7 void
|
|
8 make_link_2 (char *exepath, char *args, char *icon, char *lname)
|
|
9 {
|
|
10 IShellLink *sl;
|
|
11 IPersistFile *pf;
|
|
12 WCHAR widepath [_MAX_PATH];
|
|
13
|
|
14 CoCreateInstance (&CLSID_ShellLink, NULL,
|
|
15 CLSCTX_INPROC_SERVER, &IID_IShellLink, (LPVOID *) & sl);
|
|
16 sl->lpVtbl->QueryInterface (sl, &IID_IPersistFile, (void **) &pf);
|
|
17
|
|
18 sl->lpVtbl->SetPath (sl, exepath);
|
|
19 sl->lpVtbl->SetArguments (sl, args);
|
|
20 sl->lpVtbl->SetIconLocation (sl, icon, 0);
|
|
21
|
|
22 MultiByteToWideChar (CP_ACP, 0, lname, -1, widepath, _MAX_PATH);
|
|
23 pf->lpVtbl->Save (pf, widepath, TRUE);
|
|
24
|
|
25 pf->lpVtbl->Release (pf);
|
|
26 sl->lpVtbl->Release (sl);
|
|
27 }
|