mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
004e08383a
*.DeskLink file realizes SendTo Desktop (Create shortcut) in Windows. DeskLink is implemented in the sendmail.dll module. CORE-12562
41 lines
945 B
C++
41 lines
945 B
C++
/*
|
|
* PROJECT: sendmail
|
|
* LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+)
|
|
* PURPOSE: DeskLink implementation
|
|
* COPYRIGHT: Copyright 2019 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
|
*/
|
|
|
|
#define COBJMACROS
|
|
#define WIN32_NO_STATUS
|
|
#include <windows.h>
|
|
#include <shlwapi.h>
|
|
#include <shlobj.h>
|
|
#include <shobjidl.h>
|
|
#include <atlbase.h>
|
|
#include <atlcom.h>
|
|
#include <atlwin.h>
|
|
#include <atlstr.h>
|
|
#include <shlguid_undoc.h>
|
|
#include <shellapi.h>
|
|
#include <shellutils.h>
|
|
#include <strsafe.h>
|
|
#include <wine/debug.h>
|
|
|
|
#include "CDeskLinkDropHandler.hpp"
|
|
|
|
#include "sendmail_version.h"
|
|
#include "resource.h"
|
|
|
|
extern LONG g_ModuleRefCnt;
|
|
|
|
HRESULT
|
|
CreateShellLink(
|
|
LPCWSTR pszLinkPath,
|
|
LPCWSTR pszTargetPath OPTIONAL,
|
|
LPCITEMIDLIST pidlTarget OPTIONAL,
|
|
LPCWSTR pszArg OPTIONAL,
|
|
LPCWSTR pszDir OPTIONAL,
|
|
LPCWSTR pszIconPath OPTIONAL,
|
|
INT iIconNr OPTIONAL,
|
|
LPCWSTR pszComment OPTIONAL);
|