msvfw32: Build language resource files separately.

Michael Stefaniuc mstefani at redhat.de
Wed Jul 1 17:27:22 CDT 2009


Do not include them from an other rc file.
---
 dlls/msvfw32/Makefile.in       |   19 ++++++++++++++++++-
 dlls/msvfw32/msvfw32_Da.rc     |    2 ++
 dlls/msvfw32/msvfw32_De.rc     |    2 ++
 dlls/msvfw32/msvfw32_En.rc     |    2 ++
 dlls/msvfw32/msvfw32_Es.rc     |    2 ++
 dlls/msvfw32/msvfw32_Fr.rc     |    2 ++
 dlls/msvfw32/msvfw32_Hu.rc     |    2 ++
 dlls/msvfw32/msvfw32_Ko.rc     |    2 ++
 dlls/msvfw32/msvfw32_Lt.rc     |    4 ++--
 dlls/msvfw32/msvfw32_Nl.rc     |    2 ++
 dlls/msvfw32/msvfw32_No.rc     |    2 ++
 dlls/msvfw32/msvfw32_Pl.rc     |    2 ++
 dlls/msvfw32/msvfw32_Pt.rc     |    2 ++
 dlls/msvfw32/msvfw32_Ru.rc     |    2 ++
 dlls/msvfw32/msvfw32_Si.rc     |    4 ++--
 dlls/msvfw32/msvfw32_Sv.rc     |    2 ++
 dlls/msvfw32/msvfw32_Tr.rc     |    2 ++
 dlls/msvfw32/msvfw32_Zh.rc     |    4 ++--
 dlls/msvfw32/msvideo_private.h |    3 +++
 dlls/msvfw32/rsrc.rc           |   39 ---------------------------------------
 20 files changed, 55 insertions(+), 46 deletions(-)
 delete mode 100644 dlls/msvfw32/rsrc.rc

diff --git a/dlls/msvfw32/Makefile.in b/dlls/msvfw32/Makefile.in
index 8347fe8..4eb3b10 100644
--- a/dlls/msvfw32/Makefile.in
+++ b/dlls/msvfw32/Makefile.in
@@ -11,7 +11,24 @@ C_SRCS = \
 	msvideo_main.c \
 	drawdib.c
 
-RC_SRCS = rsrc.rc
+RC_SRCS = \
+	msvfw32_Da.rc \
+	msvfw32_De.rc \
+	msvfw32_En.rc \
+	msvfw32_Es.rc \
+	msvfw32_Fr.rc \
+	msvfw32_Hu.rc \
+	msvfw32_Ko.rc \
+	msvfw32_Lt.rc \
+	msvfw32_Nl.rc \
+	msvfw32_No.rc \
+	msvfw32_Pl.rc \
+	msvfw32_Pt.rc \
+	msvfw32_Ru.rc \
+	msvfw32_Si.rc \
+	msvfw32_Sv.rc \
+	msvfw32_Tr.rc \
+	msvfw32_Zh.rc
 
 @MAKE_DLL_RULES@
 
diff --git a/dlls/msvfw32/msvfw32_Da.rc b/dlls/msvfw32/msvfw32_Da.rc
index 32b5489..20d60e2 100644
--- a/dlls/msvfw32/msvfw32_Da.rc
+++ b/dlls/msvfw32/msvfw32_Da.rc
@@ -18,6 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_De.rc b/dlls/msvfw32/msvfw32_De.rc
index 29b5f4b..ff822dd 100644
--- a/dlls/msvfw32/msvfw32_De.rc
+++ b/dlls/msvfw32/msvfw32_De.rc
@@ -17,6 +17,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_En.rc b/dlls/msvfw32/msvfw32_En.rc
index 1a563dd..f3ee735 100644
--- a/dlls/msvfw32/msvfw32_En.rc
+++ b/dlls/msvfw32/msvfw32_En.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Es.rc b/dlls/msvfw32/msvfw32_Es.rc
index aa4d3f0..2745361 100644
--- a/dlls/msvfw32/msvfw32_Es.rc
+++ b/dlls/msvfw32/msvfw32_Es.rc
@@ -17,6 +17,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Fr.rc b/dlls/msvfw32/msvfw32_Fr.rc
index 9318ee4..cd2c056 100644
--- a/dlls/msvfw32/msvfw32_Fr.rc
+++ b/dlls/msvfw32/msvfw32_Fr.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Hu.rc b/dlls/msvfw32/msvfw32_Hu.rc
index aa0eefc..e77b67f 100644
--- a/dlls/msvfw32/msvfw32_Hu.rc
+++ b/dlls/msvfw32/msvfw32_Hu.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Ko.rc b/dlls/msvfw32/msvfw32_Ko.rc
index 4d6527e..72e999d 100644
--- a/dlls/msvfw32/msvfw32_Ko.rc
+++ b/dlls/msvfw32/msvfw32_Ko.rc
@@ -17,6 +17,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Lt.rc b/dlls/msvfw32/msvfw32_Lt.rc
index 21b9902..c7432d3 100644
--- a/dlls/msvfw32/msvfw32_Lt.rc
+++ b/dlls/msvfw32/msvfw32_Lt.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 /* UTF-8 */
 #pragma code_page(65001)
 
@@ -52,5 +54,3 @@ STRINGTABLE DISCARDABLE
 {
     IDS_FULLFRAMES "Pilni kadrai (neglaudinti)"
 }
-
-#pragma code_page(default)
diff --git a/dlls/msvfw32/msvfw32_Nl.rc b/dlls/msvfw32/msvfw32_Nl.rc
index e1236f7..d82f860 100644
--- a/dlls/msvfw32/msvfw32_Nl.rc
+++ b/dlls/msvfw32/msvfw32_Nl.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_No.rc b/dlls/msvfw32/msvfw32_No.rc
index 41a24e3..eb07aed 100644
--- a/dlls/msvfw32/msvfw32_No.rc
+++ b/dlls/msvfw32/msvfw32_No.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Pl.rc b/dlls/msvfw32/msvfw32_Pl.rc
index 53ee33c..cb5a9eb 100644
--- a/dlls/msvfw32/msvfw32_Pl.rc
+++ b/dlls/msvfw32/msvfw32_Pl.rc
@@ -17,6 +17,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 207, 95
diff --git a/dlls/msvfw32/msvfw32_Pt.rc b/dlls/msvfw32/msvfw32_Pt.rc
index 0640870..efd3119 100644
--- a/dlls/msvfw32/msvfw32_Pt.rc
+++ b/dlls/msvfw32/msvfw32_Pt.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Ru.rc b/dlls/msvfw32/msvfw32_Ru.rc
index 96c8a81..5b42d19 100644
--- a/dlls/msvfw32/msvfw32_Ru.rc
+++ b/dlls/msvfw32/msvfw32_Ru.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Si.rc b/dlls/msvfw32/msvfw32_Si.rc
index 05d1ba5..93fb175 100644
--- a/dlls/msvfw32/msvfw32_Si.rc
+++ b/dlls/msvfw32/msvfw32_Si.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 #pragma code_page(65001)
 
 LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
@@ -51,5 +53,3 @@ STRINGTABLE DISCARDABLE
 {
     IDS_FULLFRAMES "Polne slike (nestisnjeno)"
 }
-
-#pragma code_page(default)
diff --git a/dlls/msvfw32/msvfw32_Sv.rc b/dlls/msvfw32/msvfw32_Sv.rc
index 68f5167..2461fce 100644
--- a/dlls/msvfw32/msvfw32_Sv.rc
+++ b/dlls/msvfw32/msvfw32_Sv.rc
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Tr.rc b/dlls/msvfw32/msvfw32_Tr.rc
index b9da7c2..0963509 100644
--- a/dlls/msvfw32/msvfw32_Tr.rc
+++ b/dlls/msvfw32/msvfw32_Tr.rc
@@ -18,6 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
 
 ICM_CHOOSE_COMPRESSOR DIALOG DISCARDABLE  36, 24, 187, 95
diff --git a/dlls/msvfw32/msvfw32_Zh.rc b/dlls/msvfw32/msvfw32_Zh.rc
index 334fd69..3ff0fc0 100644
--- a/dlls/msvfw32/msvfw32_Zh.rc
+++ b/dlls/msvfw32/msvfw32_Zh.rc
@@ -18,6 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "msvideo_private.h"
+
 /* Chinese text is encoded in UTF-8 */
 #pragma code_page(65001)
 
@@ -88,5 +90,3 @@ STRINGTABLE DISCARDABLE
 {
     IDS_FULLFRAMES "å
¨å¹€(未壓縮)"
 }
-
-#pragma code_page(default)
diff --git a/dlls/msvfw32/msvideo_private.h b/dlls/msvfw32/msvideo_private.h
index d6b2d19..ea0566b 100644
--- a/dlls/msvfw32/msvideo_private.h
+++ b/dlls/msvfw32/msvideo_private.h
@@ -19,6 +19,9 @@
 #ifndef __WINE_MSVIDEO_PRIVATE_H
 #define __WINE_MSVIDEO_PRIVATE_H
 
+#include <windef.h>
+#include <winuser.h>
+
 #define ICM_CHOOSE_COMPRESSOR 1
 #define IDC_COMP_LIST 880
 #define IDS_FULLFRAMES 901
diff --git a/dlls/msvfw32/rsrc.rc b/dlls/msvfw32/rsrc.rc
deleted file mode 100644
index a24ab3c..0000000
--- a/dlls/msvfw32/rsrc.rc
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright 2005 Dmitry Timoshkov
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "windef.h"
-#include "winuser.h"
-#include "msvideo_private.h"
-
-#include "msvfw32_Da.rc"
-#include "msvfw32_De.rc"
-#include "msvfw32_En.rc"
-#include "msvfw32_Es.rc"
-#include "msvfw32_Fr.rc"
-#include "msvfw32_Hu.rc"
-#include "msvfw32_Ko.rc"
-#include "msvfw32_Lt.rc"
-#include "msvfw32_Nl.rc"
-#include "msvfw32_No.rc"
-#include "msvfw32_Pl.rc"
-#include "msvfw32_Pt.rc"
-#include "msvfw32_Ru.rc"
-#include "msvfw32_Si.rc"
-#include "msvfw32_Sv.rc"
-#include "msvfw32_Tr.rc"
-#include "msvfw32_Zh.rc"
-- 
1.6.2.5



More information about the wine-patches mailing list