forked from reactos/reactos
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt LoadResourceString() function from `msconfig_new/utils.c`. Addendum to 118869f. CORE-5991
- Loading branch information
1 parent
118869f
commit 288603b
Showing
6 changed files
with
109 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* PROJECT: ReactOS uxtheme.dll | ||
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) | ||
* PURPOSE: English (United States) resource file | ||
* TRANSLATORS: Copyright 2011-2019 Giannis Adamopoulos <[email protected]> | ||
* Copyright 2023 Ethan Rodensky <[email protected]> | ||
*/ | ||
|
||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | ||
|
||
/* Strings */ | ||
|
||
STRINGTABLE | ||
BEGIN | ||
IDS_MESSAGEBOX "Message Box" | ||
IDS_ACTIVEWIN "Active Window" | ||
IDS_INACTIVEWIN "Inactive Window" | ||
IDS_OK "OK" | ||
IDS_WINTEXT "Window Text" | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* PROJECT: ReactOS uxtheme.dll | ||
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) | ||
* PURPOSE: Main resource header file | ||
* COPYRIGHT: Copyright 2011-2019 Giannis Adamopoulos <[email protected]> | ||
* Copyright 2023 Ethan Rodensky <[email protected]> | ||
*/ | ||
|
||
#pragma once | ||
|
||
/* Resources */ | ||
#define IDS_MESSAGEBOX 2000 | ||
#define IDS_ACTIVEWIN 2001 | ||
#define IDS_INACTIVEWIN 2002 | ||
#define IDS_OK 2003 | ||
#define IDS_WINTEXT 2004 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* PROJECT: ReactOS uxtheme.dll | ||
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) | ||
* PURPOSE: Main resource file | ||
* COPYRIGHT: Copyright 2011-2019 Giannis Adamopoulos <[email protected]> | ||
* Copyright 2023 Ethan Rodensky <[email protected]> | ||
*/ | ||
|
||
#include "resource.h" | ||
|
||
/* UTF-8 */ | ||
#pragma code_page(65001) | ||
|
||
#ifdef LANGUAGE_EN_US | ||
#include "lang/en-US.rc" | ||
#endif | ||
|
||
#include "version.rc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters