Module: wine
Branch: master
Commit: f74e312bf81032c46bd2ce080a5f6a33c7ac3ee3
URL: http://source.winehq.org/git/wine.git/?a=commit;h=f74e312bf81032c46bd2ce080…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Jan 4 17:09:21 2010 +0100
Update copyright info for 2010.
---
LICENSE | 2 +-
include/wine/wine_common_ver.rc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/LICENSE b/LICENSE
index d6844a6..c9549e3 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 1993-2009 the Wine project authors (see the file AUTHORS
+Copyright (c) 1993-2010 the Wine project authors (see the file AUTHORS
for a complete list)
Wine is free software; you can redistribute it and/or modify it under
diff --git a/include/wine/wine_common_ver.rc b/include/wine/wine_common_ver.rc
index 6d6cf92..29dcd98 100644
--- a/include/wine/wine_common_ver.rc
+++ b/include/wine/wine_common_ver.rc
@@ -104,7 +104,7 @@ FILESUBTYPE WINE_FILESUBTYPE
VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
VALUE "FileVersion", WINE_FILEVERSION_STR
VALUE "InternalName", WINE_FILENAME
- VALUE "LegalCopyright", "Copyright (c) 1993-2009 the Wine project authors (see the file AUTHORS for a complete list)"
+ VALUE "LegalCopyright", "Copyright (c) 1993-2010 the Wine project authors (see the file AUTHORS for a complete list)"
VALUE "OriginalFilename", WINE_FILENAME_STR
VALUE "ProductName", WINE_PRODUCTNAME_STR
VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
Module: wine
Branch: master
Commit: 2ef707cc09d6f1649a5876512cb0a5e194e243bf
URL: http://source.winehq.org/git/wine.git/?a=commit;h=2ef707cc09d6f1649a5876512…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Jan 4 16:37:10 2010 +0100
winedos: Merge the few definitions from dosvm.h into dosexe.h.
---
dlls/winedos/dosexe.h | 8 ++++++++
dlls/winedos/dosvm.c | 1 -
dlls/winedos/dosvm.h | 33 ---------------------------------
dlls/winedos/module.c | 1 -
4 files changed, 8 insertions(+), 35 deletions(-)
diff --git a/dlls/winedos/dosexe.h b/dlls/winedos/dosexe.h
index 108a603..29cf8a0 100644
--- a/dlls/winedos/dosexe.h
+++ b/dlls/winedos/dosexe.h
@@ -22,6 +22,7 @@
#define __WINE_DOSEXE_H
#include <stdarg.h>
+#include <sys/types.h>
#include "windef.h"
#include "wine/library.h"
@@ -34,6 +35,13 @@
struct _DOSEVENT;
+typedef struct {
+ PAPCFUNC proc;
+ ULONG_PTR arg;
+} DOS_SPC;
+
+extern pid_t dosvm_pid;
+
/* amount of space reserved for relay stack */
#define DOSVM_RELAY_DATA_SIZE 4096
diff --git a/dlls/winedos/dosvm.c b/dlls/winedos/dosvm.c
index d62a28b..fdd677f 100644
--- a/dlls/winedos/dosvm.c
+++ b/dlls/winedos/dosvm.c
@@ -51,7 +51,6 @@
#include "wincon.h"
#include "dosexe.h"
-#include "dosvm.h"
#include "wine/debug.h"
#include "excpt.h"
diff --git a/dlls/winedos/dosvm.h b/dlls/winedos/dosvm.h
deleted file mode 100644
index 098dacc..0000000
--- a/dlls/winedos/dosvm.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * DOS virtual machine
- *
- * Copyright 2000 Ove Kåven
- *
- * 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
- */
-
-#ifndef __WINE_DOSVM_H
-#define __WINE_DOSVM_H
-
-#include <sys/types.h> /* pid_t */
-
-typedef struct {
- PAPCFUNC proc;
- ULONG_PTR arg;
-} DOS_SPC;
-
-extern pid_t dosvm_pid;
-
-#endif /* __WINE_DOSVM_H */
diff --git a/dlls/winedos/module.c b/dlls/winedos/module.c
index 51b68e4..a4d9c51 100644
--- a/dlls/winedos/module.c
+++ b/dlls/winedos/module.c
@@ -47,7 +47,6 @@
#include "winerror.h"
#include "wine/debug.h"
#include "dosexe.h"
-#include "dosvm.h"
#include "vga.h"
WINE_DEFAULT_DEBUG_CHANNEL(module);