forked from reactos/reactos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adapt SetWindowResourceText() function from `msconfig_new/utils.c` LoadResourceStringEx() function. - Drop `version.rc` in favor of `uxtheme.rc` since we have forked uxtheme. Addendum to 118869f. CORE-5991
- Loading branch information
1 parent
e6cd9de
commit d11582f
Showing
7 changed files
with
101 additions
and
29 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 2014 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 2014 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,24 @@ | ||
/* | ||
* 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 2014 Giannis Adamopoulos <[email protected]> | ||
* Copyright 2023 Ethan Rodensky <[email protected]> | ||
*/ | ||
|
||
#include <windef.h> | ||
|
||
#include "resource.h" | ||
|
||
#define REACTOS_VERSION_DLL | ||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS uxtheme.dll" | ||
#define REACTOS_STR_INTERNAL_NAME "uxtheme" | ||
#define REACTOS_STR_ORIGINAL_FILENAME "uxtheme.dll" | ||
#include <reactos/version.rc> | ||
|
||
/* UTF-8 */ | ||
#pragma code_page(65001) | ||
|
||
#ifdef LANGUAGE_EN_US | ||
#include "lang/en-US.rc" | ||
#endif |
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 was deleted.
Oops, something went wrong.