Paul Gofman : wmc: Add Dxgi facility.

Alexandre Julliard julliard at winehq.org
Mon Sep 21 15:12:16 CDT 2020


Module: wine
Branch: master
Commit: b936df428dc3f30f03c854abac8860888a983d67
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b936df428dc3f30f03c854abac8860888a983d67

Author: Paul Gofman <pgofman at codeweavers.com>
Date:   Mon Sep 21 14:20:02 2020 +0300

wmc: Add Dxgi facility.

Signed-off-by: Paul Gofman <pgofman at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/wmc/mcl.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/wmc/mcl.c b/tools/wmc/mcl.c
index 579d4b8788..93e666fed7 100644
--- a/tools/wmc/mcl.c
+++ b/tools/wmc/mcl.c
@@ -85,6 +85,7 @@ static const WCHAR ustr_language[]	= { 'L', 'a', 'n', 'g', 'u', 'a', 'g', 'e', 0
 static const WCHAR ustr_languagenames[]	= { 'L', 'a', 'n', 'g', 'u', 'a', 'g', 'e', 'N', 'a', 'm', 'e', 's', 0};
 static const WCHAR ustr_messageid[]	= { 'M', 'e', 's', 's', 'a', 'g', 'e', 'I', 'd', 0 };
 static const WCHAR ustr_messageidtypedef[] = { 'M', 'e', 's', 's', 'a', 'g', 'e', 'I', 'd', 'T', 'y', 'p', 'e', 'd', 'e', 'f', 0 };
+static const WCHAR ustr_dxgi[]	= { 'D', 'x', 'g', 'i', 0 };
 static const WCHAR ustr_null[]	= { 'N', 'u', 'l', 'l', 0 };
 static const WCHAR ustr_outputbase[]	= { 'O', 'u', 't', 'p', 'u', 't', 'B', 'a', 's', 'e', 0 };
 static const WCHAR ustr_severity[]	= { 'S', 'e', 'v', 'e', 'r', 'i', 't', 'y', 0 };
@@ -552,6 +553,7 @@ int mcy_lex(void)
 		add_token(tok_severity,	ustr_success,		0x00,		0, NULL, 0);
 		add_token(tok_facility,	ustr_application,	0xFFF,		0, NULL, 0);
 		add_token(tok_facility,	ustr_system,		0x0FF,		0, NULL, 0);
+		add_token(tok_facility,	ustr_dxgi,   		0x87a,		0, NULL, 0);
 		add_token(tok_facility,	ustr_null,   		0x000,		0, NULL, 0);
 		add_token(tok_language,	ustr_english,		0x409,		437, ustr_msg00001, 0);
 	}




More information about the wine-cvs mailing list