Module: wine
Branch: master
Commit: b3a9ce44327bae77dbe3c5e3facaefcb40696834
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3a9ce44327bae77dbe3c5e3f…
Author: Mariusz Pluciński <vshader(a)gmail.com>
Date: Thu Jul 22 23:59:34 2010 +0200
gameux: Add gameux.dll library stub.
---
configure | 1 +
configure.ac | 1 +
dlls/gameux/Makefile.in | 13 ++++++++++
dlls/gameux/gameux.spec | 5 ++++
dlls/gameux/main.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++
dlls/gameux/version.rc | 29 ++++++++++++++++++++++++
6 files changed, 106 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index ead05fb..925df23 100755
--- a/configure
+++ b/configure
@@ -14507,6 +14507,7 @@ wine_fn_config_dll fltlib enable_fltlib
wine_fn_config_dll fusion enable_fusion
wine_fn_config_test dlls/fusion/tests fusion_test
wine_fn_config_dll fwpuclnt enable_fwpuclnt
+wine_fn_config_dll gameux enable_gameux
wine_fn_config_dll gdi.exe16 enable_win16
wine_fn_config_dll gdi32 enable_gdi32 gdi32
wine_fn_config_test dlls/gdi32/tests gdi32_test
diff --git a/configure.ac b/configure.ac
index a3a6c67..2888d1e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2363,6 +2363,7 @@ WINE_CONFIG_DLL(fltlib)
WINE_CONFIG_DLL(fusion)
WINE_CONFIG_TEST(dlls/fusion/tests)
WINE_CONFIG_DLL(fwpuclnt)
+WINE_CONFIG_DLL(gameux)
WINE_CONFIG_DLL(gdi.exe16,enable_win16)
WINE_CONFIG_DLL(gdi32,,[gdi32])
WINE_CONFIG_TEST(dlls/gdi32/tests)
diff --git a/dlls/gameux/Makefile.in b/dlls/gameux/Makefile.in
new file mode 100644
index 0000000..d26a8ab
--- /dev/null
+++ b/dlls/gameux/Makefile.in
@@ -0,0 +1,13 @@
+EXTRADEFS = -DCOM_NO_WINDOWS_H
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = gameux.dll
+
+C_SRCS = \
+ main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/gameux/gameux.spec b/dlls/gameux/gameux.spec
new file mode 100644
index 0000000..1c89098
--- /dev/null
+++ b/dlls/gameux/gameux.spec
@@ -0,0 +1,5 @@
+@ stub GameUxShimW
+@ stdcall -private DllCanUnloadNow()
+@ stub DllGetClassObject
+@ stub DllRegisterServer
+@ stub DllUnregisterServer
diff --git a/dlls/gameux/main.c b/dlls/gameux/main.c
new file mode 100644
index 0000000..205d48e
--- /dev/null
+++ b/dlls/gameux/main.c
@@ -0,0 +1,57 @@
+/*
+ * Gameux library main file
+ *
+ * Copyright (C) 2010 Mariusz Pluciński
+ *
+ * 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 "config.h"
+
+#define COBJMACROS
+
+#include <stdarg.h>
+#include "windef.h"
+#include "winbase.h"
+
+#include "ole2.h"
+#include "shobjidl.h"
+#include "initguid.h"
+#include "gameux.h"
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(gameux);
+
+HRESULT WINAPI DllCanUnloadNow(void)
+{
+ FIXME("stub\n");
+ return S_FALSE;
+}
+
+BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
+{
+ TRACE("(%p, %d, %p)\n", hInstDLL, fdwReason, lpv);
+
+ switch(fdwReason)
+ {
+ case DLL_PROCESS_ATTACH:
+ DisableThreadLibraryCalls(hInstDLL);
+ break;
+ case DLL_PROCESS_DETACH:
+ break;
+ }
+ return TRUE;
+}
diff --git a/dlls/gameux/version.rc b/dlls/gameux/version.rc
new file mode 100644
index 0000000..a637163
--- /dev/null
+++ b/dlls/gameux/version.rc
@@ -0,0 +1,29 @@
+/*
+ * Gameux library version resource
+ *
+ * Copyright (C) 2010 Mariusz Pluciński
+ *
+ * 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
+ */
+
+#define WINE_OLESELFREGISTER
+#define WINE_FILEDESCRIPTION_STR "Wine Games Explorer"
+#define WINE_FILENAME_STR "gameux.dll"
+#define WINE_FILEVERSION 6,1,7600,16385
+#define WINE_FILEVERSION_STR "6.1.7600.16385"
+#define WINE_PRODUCTVERSION 6,1,7600,16385
+#define WINE_PRODUCTVERSION_STR "6.1.7600.16385"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: abd0e0895396dfb410964392a81ef0ff8e9d6a60
URL: http://source.winehq.org/git/wine.git/?a=commit;h=abd0e0895396dfb410964392a…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Tue Jul 27 10:26:57 2010 +0200
shdocvw: Add French translation.
---
dlls/shdocvw/Fr.rc | 58 ++++++++++++++++++++++++++++++++++++++++++++++
dlls/shdocvw/Makefile.in | 1 +
2 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/dlls/shdocvw/Fr.rc b/dlls/shdocvw/Fr.rc
new file mode 100644
index 0000000..2d053a2
--- /dev/null
+++ b/dlls/shdocvw/Fr.rc
@@ -0,0 +1,58 @@
+/*
+ * shdocvw French resources
+ * Copyright 2010 Frédéric Delanoy
+ *
+ * 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 "resource.h"
+
+/* UTF-8 */
+#pragma code_page(65001)
+
+LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
+
+IDD_BROWSE_OPEN DIALOG 10, 10, 200, 70
+STYLE DS_MODALFRAME | WS_CAPTION
+CAPTION "Open URL"
+FONT 8, "MS Shell Dlg"
+{
+ LTEXT "Spécifiez l'URL que vous désirez ouvrir dans Internet Explorer :",-1,30, 6, 150, 17
+ LTEXT "Ouvrir :", -1, 2, 32, 27, 15
+ EDITTEXT IDC_BROWSE_OPEN_URL, 30, 30, 155, 13
+ DEFPUSHBUTTON "&OK", IDOK, 54, 50, 50, 15
+ PUSHBUTTON "&Annuler", IDCANCEL, 114, 50, 50, 15
+}
+
+IDR_BROWSE_MAIN_MENU MENU
+{
+ POPUP "&Fichier"
+ {
+ MENUITEM "&Nouvelle fenêtre" ID_BROWSE_NEW_WINDOW
+ MENUITEM "&Ouvrir...", ID_BROWSE_OPEN
+ MENUITEM "&Enregistrer", ID_BROWSE_SAVE
+ MENUITEM "Enregistrer &sous...", ID_BROWSE_SAVE_AS
+ MENUITEM SEPARATOR
+ MENUITEM "&Format d'impression...", ID_BROWSE_PRINT_FORMAT
+ MENUITEM "&Imprimer...", ID_BROWSE_PRINT
+ MENUITEM "&Aperçu avant impression...", ID_BROWSE_PRINT_PREVIEW
+ MENUITEM SEPARATOR
+ MENUITEM "&Propriétés...", ID_BROWSE_PROPERTIES
+ }
+ POPUP "&Aide"
+ {
+ MENUITEM "À &propos d'Internet Explorer...", ID_BROWSE_ABOUT
+ }
+}
diff --git a/dlls/shdocvw/Makefile.in b/dlls/shdocvw/Makefile.in
index 2ff6bee..fa2b3ac 100644
--- a/dlls/shdocvw/Makefile.in
+++ b/dlls/shdocvw/Makefile.in
@@ -31,6 +31,7 @@ C_SRCS = \
RC_SRCS = \
De.rc \
En.rc \
+ Fr.rc \
Ko.rc \
Lt.rc \
Nl.rc \
Module: wine
Branch: master
Commit: e5cc9b0f8a81feb73372ad2f5796cf332c095286
URL: http://source.winehq.org/git/wine.git/?a=commit;h=e5cc9b0f8a81feb73372ad2f5…
Author: Anders Jonsson <anders.jonsson(a)norsjonet.se>
Date: Tue Jul 27 00:08:07 2010 +0200
shdocvw: Add Swedish translation.
---
dlls/shdocvw/Makefile.in | 1 +
dlls/shdocvw/Sv.rc | 59 ++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+), 0 deletions(-)
diff --git a/dlls/shdocvw/Makefile.in b/dlls/shdocvw/Makefile.in
index f2f91f8..2ff6bee 100644
--- a/dlls/shdocvw/Makefile.in
+++ b/dlls/shdocvw/Makefile.in
@@ -35,6 +35,7 @@ RC_SRCS = \
Lt.rc \
Nl.rc \
Ro.rc \
+ Sv.rc \
Uk.rc \
shdocvw.rc
diff --git a/dlls/shdocvw/Sv.rc b/dlls/shdocvw/Sv.rc
new file mode 100644
index 0000000..0bfa311
--- /dev/null
+++ b/dlls/shdocvw/Sv.rc
@@ -0,0 +1,59 @@
+/*
+ * Copyright 2010 Anders Jonsson
+ *
+ * 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 "resource.h"
+
+#pragma code_page(65001)
+
+LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
+
+IDD_BROWSE_OPEN DIALOG 10, 10, 200, 70
+STYLE DS_MODALFRAME | WS_CAPTION
+CAPTION "Öppna webbadress"
+FONT 8, "MS Shell Dlg"
+{
+ LTEXT "Ange webbadressen du vill öppna med Internet Explorer",-1,25, 5, 150,15
+ LTEXT "Öppna:", -1, 2, 32, 20, 15
+ EDITTEXT IDC_BROWSE_OPEN_URL, 25, 30, 160, 13
+ DEFPUSHBUTTON "&OK", IDOK, 25, 50, 50, 15
+ PUSHBUTTON "&Avbryt", IDCANCEL, 85, 50, 50, 15
+}
+
+IDR_BROWSE_MAIN_MENU MENU
+{
+ POPUP "&Arkiv"
+ {
+ POPUP "&Nytt"
+ {
+ MENUITEM "&Fönster" ID_BROWSE_NEW_WINDOW
+ }
+ MENUITEM "&Öppna...", ID_BROWSE_OPEN
+ MENUITEM "&Spara", ID_BROWSE_SAVE
+ MENUITEM "S¶ som...", ID_BROWSE_SAVE_AS
+ MENUITEM SEPARATOR
+ MENUITEM "U&tskriftsformat...", ID_BROWSE_PRINT_FORMAT
+ MENUITEM "Skriv &ut...", ID_BROWSE_PRINT
+ MENUITEM "&Förhandsgranska...", ID_BROWSE_PRINT_PREVIEW
+ MENUITEM SEPARATOR
+ MENUITEM "&Egenskaper...", ID_BROWSE_PROPERTIES
+ }
+ POPUP "&Hjälp"
+ {
+ MENUITEM "&Om Internet Explorer...", ID_BROWSE_ABOUT
+ }
+}