mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 19:25:36 +00:00
*.DeskLink file realizes SendTo Desktop (Create shortcut) in Windows. DeskLink is implemented in the sendmail.dll module. CORE-12562
15 lines
481 B
Plaintext
15 lines
481 B
Plaintext
/*
|
|
* PROJECT: sendmail
|
|
* LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+)
|
|
* PURPOSE: DeskLink implementation
|
|
* COPYRIGHT: Copyright 2019 Katayama Hirofumi MZ ([email protected])
|
|
*/
|
|
|
|
#include "sendmail_version.h"
|
|
|
|
#define WINE_OLESELFREGISTER
|
|
#define WINE_FILEVERSION WINE_FILEVERSION_MAJOR,WINE_FILEVERSION_MINOR,WINE_FILEVERSION_BUILD,WINE_FILEVERSION_PLATFORMID
|
|
#define WINE_FILENAME_STR "sendmail.dll"
|
|
|
|
#include <wine/wine_common_ver.rc>
|