Module: wine
Branch: master
Commit: 764cf334d6aa909a29cf21e4d9a90ce06209598a
URL: http://source.winehq.org/git/wine.git/?a=commit;h=764cf334d6aa909a29cf21e4d…
Author: Dan Hipschman <dsh(a)linux.ucla.edu>
Date: Wed Mar 19 15:03:00 2008 -0700
rpcrt4: Use correct count in rpcrt4_conn_np_write.
count is the total count passed into rpcrt4_conn_np_write. If WriteFile
does a partial write it would end up writing too much subsequent times
through the loop. All tests pass as before.
---
dlls/rpcrt4/rpc_transport.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/rpc_transport.c b/dlls/rpcrt4/rpc_transport.c
index b02c11d..822807b 100644
--- a/dlls/rpcrt4/rpc_transport.c
+++ b/dlls/rpcrt4/rpc_transport.c
@@ -392,7 +392,7 @@ static int rpcrt4_conn_np_write(RpcConnection *Connection,
while (bytes_left)
{
DWORD bytes_written;
- ret = WriteFile(npc->pipe, buf, count, &bytes_written, NULL);
+ ret = WriteFile(npc->pipe, buf, bytes_left, &bytes_written, NULL);
if (!ret || !bytes_written)
break;
bytes_left -= bytes_written;
Module: wine
Branch: master
Commit: 95c280178478c04f8a38bf42952ed175dec01db2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=95c280178478c04f8a38bf429…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Thu Mar 20 00:11:53 2008 +0100
localspl: Add the Romanian translation.
---
dlls/localspl/localspl.rc | 1 +
dlls/localspl/spl_Ro.rc | 27 +++++++++++++++++++++++++++
2 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/dlls/localspl/localspl.rc b/dlls/localspl/localspl.rc
index 2722413..3aeeb2c 100644
--- a/dlls/localspl/localspl.rc
+++ b/dlls/localspl/localspl.rc
@@ -43,4 +43,5 @@
#include "spl_Nl.rc"
#include "spl_No.rc"
#include "spl_Pl.rc"
+#include "spl_Ro.rc"
#include "spl_Sv.rc"
diff --git a/dlls/localspl/spl_Ro.rc b/dlls/localspl/spl_Ro.rc
new file mode 100644
index 0000000..4432195
--- /dev/null
+++ b/dlls/localspl/spl_Ro.rc
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2005 Huw Davies
+ * Copyright 2006 Detlef Riekenberg
+ * Copyright 2008 Michael Stefaniuc
+ *
+ * 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
+ */
+
+LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
+
+STRINGTABLE DISCARDABLE
+{
+ IDS_LOCALPORT "Port local"
+ IDS_LOCALMONITOR "Monitor local"
+}
Module: wine
Branch: master
Commit: c6f46e21b7d152112376b588b71f5530869f5773
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c6f46e21b7d152112376b588b…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Wed Mar 19 23:56:31 2008 +0100
write: Add the German translation.
---
programs/write/De.rc | 25 +++++++++++++++++++++++++
programs/write/rsrc.rc | 1 +
2 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/programs/write/De.rc b/programs/write/De.rc
new file mode 100644
index 0000000..c2afa08
--- /dev/null
+++ b/programs/write/De.rc
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2007 Mikolaj Zalewski
+ * Copyright (C) 2008 Michael Stefaniuc
+ *
+ * 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
+ */
+
+LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
+
+STRINGTABLE
+{
+ IDS_FAILED, "Der Start von Wordpad ist fehlgeschlagen"
+}
diff --git a/programs/write/rsrc.rc b/programs/write/rsrc.rc
index 049ee8c..e74cfbd 100644
--- a/programs/write/rsrc.rc
+++ b/programs/write/rsrc.rc
@@ -22,6 +22,7 @@
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
+#include "De.rc"
#include "En.rc"
#include "Fr.rc"
#include "Ko.rc"
Module: wine
Branch: master
Commit: 3f206384d2c0d23a0d22b6f2cc4350b85cb10efa
URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f206384d2c0d23a0d22b6f2c…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Wed Mar 19 23:56:13 2008 +0100
write: Add the Romanian translation.
---
programs/write/Ro.rc | 29 +++++++++++++++++++++++++++++
programs/write/rsrc.rc | 1 +
2 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/programs/write/Ro.rc b/programs/write/Ro.rc
new file mode 100644
index 0000000..8a33118
--- /dev/null
+++ b/programs/write/Ro.rc
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2007 Mikolaj Zalewski
+ * Copyright (C) 2008 Michael Stefaniuc
+ *
+ * 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
+ */
+
+LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
+
+#pragma code_page(65001)
+
+STRINGTABLE
+{
+ IDS_FAILED, "Execuția Wordpad a eșuat"
+}
+
+#pragma code_page(default)
diff --git a/programs/write/rsrc.rc b/programs/write/rsrc.rc
index 45067eb..049ee8c 100644
--- a/programs/write/rsrc.rc
+++ b/programs/write/rsrc.rc
@@ -28,4 +28,5 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include "Nl.rc"
#include "No.rc"
#include "Pl.rc"
+#include "Ro.rc"
#include "Ru.rc"
Module: wine
Branch: master
Commit: 389799e7c0be947a7c5b9499feef36e8d1a4c68a
URL: http://source.winehq.org/git/wine.git/?a=commit;h=389799e7c0be947a7c5b9499f…
Author: Frans Kool <Frans.Kool(a)gmail.com>
Date: Wed Mar 19 22:41:12 2008 +0100
reg: Added Dutch resources.
---
programs/reg/Nl.rc | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/programs/reg/Nl.rc b/programs/reg/Nl.rc
new file mode 100644
index 0000000..a3eaa28
--- /dev/null
+++ b/programs/reg/Nl.rc
@@ -0,0 +1,30 @@
+/*
+ * REG.EXE - Wine-compatible reg program.
+ * Dutch language support
+ *
+ * Copyright 2008 Frans Kool
+ *
+ * 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
+ */
+
+LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
+
+STRINGTABLE
+{
+ STRING_USAGE, "Gebruik van dit commando is:\n\nREG [ ADD | DELETE | QUERY ]\nREG commando /?\n"
+ STRING_ADD_USAGE, "REG ADD sleutel_naam [/v waarde_naam | /ve] [/t type] [/s scheidingsteken] [/d data] [/f]\n"
+ STRING_DELETE_USAGE, "REG DELETE sleutel_naam [/v waarde_naam | /ve | /va] [/f]\n"
+ STRING_QUERY_USAGE, "REG QUERY sleutel_naam [/v waarde_naam | /ve] [/s]\n"
+}