mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
004e08383a
*.DeskLink file realizes SendTo Desktop (Create shortcut) in Windows. DeskLink is implemented in the sendmail.dll module. CORE-12562
14 lines
322 B
C
14 lines
322 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)
|
|
*/
|
|
|
|
#ifndef RESOURCE_H_
|
|
#define RESOURCE_H_
|
|
|
|
#define IDR_DESKLINK 100
|
|
#define IDS_SHORTCUT 1000
|
|
|
|
#endif
|