mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
21 lines
659 B
Plaintext
21 lines
659 B
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 <alex.ionescu@reactos.org>
|
|
*/
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
|
|
#if defined(SARCH_PC98)
|
|
#define REACTOS_STR_FILE_DESCRIPTION "NEC PC-98 Boot Video Driver"
|
|
#elif defined(SARCH_XBOX)
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Original Xbox Boot Video Driver"
|
|
#else
|
|
#define REACTOS_STR_FILE_DESCRIPTION "VGA Boot Driver"
|
|
#endif
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "bootvid.dll"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "bootvid.dll"
|
|
#include <reactos/version.rc>
|