mirror of
https://github.com/reactos/reactos.git
synced 2026-06-06 13:47:40 +08:00
- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
/*
|
|
* LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+)
|
|
* COPYRIGHT: Copyright 2001 Dmitry Timoshkov
|
|
* Copyright 2004 Ivan Leo Puoti
|
|
*/
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winver.h"
|
|
|
|
/* Convert Wine #defines to ReactOS #defines */
|
|
#ifdef WINE_FILEVERSION
|
|
#define REACTOS_FILEVERSION WINE_FILEVERSION
|
|
#endif /* WINE_FILEVERSION */
|
|
|
|
#ifdef WINE_FILEVERSION_STR
|
|
#define REACTOS_STR_FILE_VERSION WINE_FILEVERSION_STR
|
|
#endif /* WINE_FILEVERSION_STR */
|
|
|
|
#ifdef WINE_FILEDESCRIPTION_STR
|
|
#define REACTOS_STR_FILE_DESCRIPTION WINE_FILEDESCRIPTION_STR
|
|
#else
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS/Wine core dll\0"
|
|
#endif /* WINE_FILEDESCRIPTION_STR */
|
|
|
|
#ifdef WINE_FILENAME_STR
|
|
#define REACTOS_STR_INTERNAL_NAME WINE_FILENAME_STR
|
|
#define REACTOS_STR_ORIGINAL_FILENAME WINE_FILENAME_STR
|
|
#endif /* WINE_FILENAME_STR */
|
|
|
|
#ifdef WINE_PRODUCTVERSION
|
|
#define REACTOS_PRODUCT_VERSION WINE_PRODUCTVERSION
|
|
#endif /* WINE_PRODUCTVERSION */
|
|
|
|
#ifdef WINE_PRODUCTVERSION_STR
|
|
#define REACTOS_STR_PRODUCT_VERSION WINE_PRODUCTVERSION_STR
|
|
#endif /* WINE_PRODUCTVERSION_STR */
|
|
|
|
#ifdef WINE_PRODUCTNAME_STR
|
|
#define REACTOS_STR_PRODUCT_NAME WINE_PRODUCTNAME_STR
|
|
#endif /* WINE_PRODUCTNAME_STR */
|
|
|
|
#ifdef WINE_OLESELFREGISTER
|
|
#define REACTOS_OLESELFREGISTER
|
|
#endif /* WINE_OLESELFREGISTER */
|
|
|
|
/* Credit the Wine team */
|
|
#define REACTOS_STR_COMPANY_NAME "ReactOS Project/Wine Team\0"
|
|
#define REACTOS_STR_LEGAL_COPYRIGHT "(C) 1996-" COPYRIGHT_YEAR " ReactOS Project, 1993-" COPYRIGHT_YEAR " the Wine project authors\0"
|
|
#define REACTOS_STR_ORIGINAL_COPYRIGHT "(C) 1993-" COPYRIGHT_YEAR " the Wine project authors"
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
|
|
#include <reactos/version.rc>
|