Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2ef707cc
Commit
2ef707cc
authored
Jan 04, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Merge the few definitions from dosvm.h into dosexe.h.
parent
fd75ec1d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
35 deletions
+8
-35
dosexe.h
dlls/winedos/dosexe.h
+8
-0
dosvm.c
dlls/winedos/dosvm.c
+0
-1
dosvm.h
dlls/winedos/dosvm.h
+0
-33
module.c
dlls/winedos/module.c
+0
-1
No files found.
dlls/winedos/dosexe.h
View file @
2ef707cc
...
...
@@ -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
...
...
dlls/winedos/dosvm.c
View file @
2ef707cc
...
...
@@ -51,7 +51,6 @@
#include "wincon.h"
#include "dosexe.h"
#include "dosvm.h"
#include "wine/debug.h"
#include "excpt.h"
...
...
dlls/winedos/dosvm.h
deleted
100644 → 0
View file @
fd75ec1d
/*
* 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 */
dlls/winedos/module.c
View file @
2ef707cc
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment