1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#include <windows.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <objbase.h>
#include <shlobj.h>
uint64_t CreateShortcut(char *shortcutA, char *path, char *args) {
IShellLink* pISL;
IPersistFile* pIPF;
HRESULT hr;
CoInitializeEx(NULL, COINIT_MULTITHREADED);
// Shortcut filename: convert ANSI to unicode
WORD shortcutW[MAX_PATH];
int nChar = MultiByteToWideChar(CP_ACP, 0, shortcutA, -1, shortcutW, MAX_PATH);
hr = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, &IID_IShellLink, (LPVOID*)&pISL);
if (!SUCCEEDED(hr)) {
return hr+0x01000000;
}
// See https://msdn.microsoft.com/en-us/library/windows/desktop/bb774950(v=vs.85).aspx
hr = pISL->lpVtbl->SetPath(pISL, path);
if (!SUCCEEDED(hr)) {
return hr+0x02000000;
}
hr = pISL->lpVtbl->SetArguments(pISL, args);
if (!SUCCEEDED(hr)) {
return hr+0x03000000;
}
// Save the shortcut
hr = pISL->lpVtbl->QueryInterface(pISL, &IID_IPersistFile, (void**)&pIPF);
if (!SUCCEEDED(hr)) {
return hr+0x04000000;
}
hr = pIPF->lpVtbl->Save(pIPF, shortcutW, FALSE);
if (!SUCCEEDED(hr)) {
return hr+0x05000000;
}
pIPF->lpVtbl->Release(pIPF);
pISL->lpVtbl->Release(pISL);
return 0x0;
}
|