⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shortcut.h

📁 This software performs code conversion of Chinese characters, including GB2312/GBK and BIG5. It a
💻 H
字号:
// shortcut.h

#ifndef SHORTCUT_H
#define SHORTCUT_H


#ifdef __cplusplus
extern "C" {
#endif


int WINAPI CreateShortcutA ( const char *szShortcutPath,
                             const char *szDestinationPath,
                             const char *szArguments,
                             const char *szDirectory,
                             const char *szDescription,
                             const char *szIconPath,
                             int  nIconIndex,
                             int  nShowCommand,
                             unsigned short wHotKey,
                             const ITEMIDLIST *pItemIdList,
                             char *szSavedShortcutPath
) ;

int WINAPI GetShortcutA ( const char *szShortcutPath,
                          char *szDestinationPath,
                          char *szArguments,
                          char *szDirectory,
                          char *szDescription,
                          char *szIconPath,
                          int  *pnIconIndex,
                          int  *pnShowCommand,
                          unsigned short *pwHotKey,
                          ITEMIDLIST **ppItemIdList,
                          char *szSavedShortcutPath
) ;

int WINAPI CreateShortcutW ( const wchar_t *szShortcutPath,
                             const wchar_t *szDestinationPath,
                             const wchar_t *szArguments,
                             const wchar_t *szDirectory,
                             const wchar_t *szDescription,
                             const wchar_t *szIconPath,
                             int  nIconIndex,
                             int  nShowCommand,
                             unsigned short wHotKey,
                             const ITEMIDLIST *pItemIdList,
                             wchar_t *szSavedShortcutPath
) ;

int WINAPI GetShortcutW ( const wchar_t *szShortcutPath,
                          wchar_t *szDestinationPath,
                          wchar_t *szArguments,
                          wchar_t *szDirectory,
                          wchar_t *szDescription,
                          wchar_t *szIconPath,
                          int  *pnIconIndex,
                          int  *pnShowCommand,
                          unsigned short *pwHotKey,
                          ITEMIDLIST **ppItemIdList,
                          wchar_t *szSavedShortcutPath
) ;


#ifdef UNICODE
#define CreateShortcut CreateShortcutW
#define GetShortcut GetShortcutW
#else
#define CreateShortcut CreateShortcutA
#define GetShortcut GetShortcutA
#endif


#ifdef __cplusplus
}
#endif

#endif


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -