Files
AppInstallerForWin8/ShoutcutCreater/ShortcutCreater.h
2025-02-19 21:09:40 +08:00

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);