mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
The aim is to be able to compile multiple bootvids for a given ReactOS build without having to duplicate the same commands.
30 lines
1.1 KiB
Plaintext
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>
|