mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
4efff7f463
I found "SendTo My Documents" is realized by .mydocs filename extension in WinXP/2k3. To implement this, I will add mydocs.dll file. CORE-12562
15 lines
473 B
Plaintext
15 lines
473 B
Plaintext
/*
|
|
* PROJECT: mydocs
|
|
* LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+)
|
|
* PURPOSE: MyDocs implementation
|
|
* COPYRIGHT: Copyright 2020 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
|
*/
|
|
|
|
#include "mydocs_version.h"
|
|
|
|
#define WINE_OLESELFREGISTER
|
|
#define WINE_FILEVERSION WINE_FILEVERSION_MAJOR,WINE_FILEVERSION_MINOR,WINE_FILEVERSION_BUILD,WINE_FILEVERSION_PLATFORMID
|
|
#define WINE_FILENAME_STR "mydocs.dll"
|
|
|
|
#include <wine/wine_common_ver.rc>
|