Files
reactos/drivers/base/bootvid/bootvid.rc
T
Hermès Bélusca-Maïto fda2ee2ad8 [BOOTVID] Modularize the different bootvid's build rules (#8548)
The aim is to be able to compile multiple bootvids for a given ReactOS
build without having to duplicate the same commands.
2026-01-18 18:19:01 +01:00

30 lines
1.1 KiB
Plaintext

/*
* PROJECT: ReactOS Boot Video Driver
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Common resource file
* COPYRIGHT: Copyright 2007 Alex Ionescu <[email protected]>
*/
#define REACTOS_VERSION_DLL
/* Each bootvid configuration file defines REACTOS_STR_FILE_DESCRIPTION */
#cmakedefine REACTOS_STR_FILE_DESCRIPTION "${REACTOS_STR_FILE_DESCRIPTION}"
#ifndef REACTOS_STR_FILE_DESCRIPTION
#define REACTOS_STR_FILE_DESCRIPTION "Boot Video Driver"
#endif
/* The main bootvid CMake file defines default values for
* REACTOS_STR_INTERNAL_NAME and REACTOS_STR_ORIGINAL_FILENAME.
* Each bootvid configuration file can override these values. */
#cmakedefine REACTOS_STR_INTERNAL_NAME "${REACTOS_STR_INTERNAL_NAME}"
#ifndef REACTOS_STR_INTERNAL_NAME
#define REACTOS_STR_INTERNAL_NAME "bootvid"
#endif
#cmakedefine REACTOS_STR_ORIGINAL_FILENAME "${REACTOS_STR_ORIGINAL_FILENAME}"
#ifndef REACTOS_STR_ORIGINAL_FILENAME
#define REACTOS_STR_ORIGINAL_FILENAME "bootvid.dll"
#endif
#include <reactos/version.rc>