mirror of
https://github.com/modernw/AppInstallerForWin8.git
synced 2026-04-11 16:57:18 +10:00
11 lines
276 B
C
11 lines
276 B
C
#pragma once
|
|
#ifdef SHORTCUT_EXPORTS
|
|
#define SHORUTCUT_API __declspec(dllexport)
|
|
#else
|
|
#define SHORUTCUT_API __declspec(dllimport)
|
|
#endif
|
|
|
|
#include <windef.h>
|
|
|
|
extern "C" SHORUTCUT_API HRESULT CreateShortcut (LPCWSTR shortcutPath, LPCWSTR targetPath, LPCWSTR appUserModelID);
|