mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26: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
16 lines
442 B
C
16 lines
442 B
C
/*
|
|
* 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)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define WINE_FILEVERSION_MAJOR 6
|
|
#define WINE_FILEVERSION_MINOR 0
|
|
#define WINE_FILEVERSION_BUILD 3790
|
|
#define WINE_FILEVERSION_PLATFORMID 3959
|
|
|
|
#define WINE_FILEVERSION_STR "6.0.3790.3959"
|