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
55b51eab
Commit
55b51eab
authored
Nov 13, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed instance.h and callback.h, moving their contents to
kernel_private.h.
parent
7999469e
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
33 additions
and
87 deletions
+33
-87
atom.c
dlls/kernel/atom.c
+1
-1
device.c
dlls/kernel/device.c
+1
-1
instr.c
dlls/kernel/instr.c
+1
-1
kernel_private.h
dlls/kernel/kernel_private.h
+26
-0
local16.c
dlls/kernel/local16.c
+1
-1
task.c
dlls/kernel/task.c
+0
-1
vxd.c
dlls/kernel/vxd.c
+1
-1
callback.h
include/callback.h
+0
-40
instance.h
include/instance.h
+0
-39
dpmi.c
msdos/dpmi.c
+1
-1
int21.c
msdos/int21.c
+1
-1
No files found.
dlls/kernel/atom.c
View file @
55b51eab
...
...
@@ -42,7 +42,7 @@
#include "wine/unicode.h"
#include "wine/winbase16.h"
#include "global.h"
#include "
instanc
e.h"
#include "
kernel_privat
e.h"
#include "stackframe.h"
#include "wine/debug.h"
...
...
dlls/kernel/device.c
View file @
55b51eab
...
...
@@ -43,9 +43,9 @@
#include "winnt.h"
#include "msdos.h"
#include "miscemu.h"
#include "kernel_private.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "callback.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
file
);
...
...
dlls/kernel/instr.c
View file @
55b51eab
...
...
@@ -30,7 +30,7 @@
#include "miscemu.h"
#include "selectors.h"
#include "wine/debug.h"
#include "
callback
.h"
#include "
kernel_private
.h"
#include "thread.h"
#include "wine/exception.h"
...
...
dlls/kernel/kernel_private.h
View file @
55b51eab
...
...
@@ -53,4 +53,30 @@ extern BOOL WOWTHUNK_Init(void);
extern
VOID
SYSLEVEL_CheckNotLevel
(
INT
level
);
typedef
struct
{
void
(
WINAPI
*
EmulateInterruptPM
)(
CONTEXT86
*
context
,
BYTE
intnum
);
void
(
WINAPI
*
CallBuiltinHandler
)(
CONTEXT86
*
context
,
BYTE
intnum
);
/* I/O functions */
DWORD
(
WINAPI
*
inport
)(
int
port
,
int
size
);
void
(
WINAPI
*
outport
)(
int
port
,
int
size
,
DWORD
val
);
}
DOSVM_TABLE
;
extern
DOSVM_TABLE
Dosvm
;
/* this structure is always located at offset 0 of the DGROUP segment */
#include "pshpack1.h"
typedef
struct
{
WORD
null
;
/* Always 0 */
DWORD
old_ss_sp
;
/* Stack pointer; used by SwitchTaskTo() */
WORD
heap
;
/* Pointer to the local heap information (if any) */
WORD
atomtable
;
/* Pointer to the local atom table (if any) */
WORD
stacktop
;
/* Top of the stack */
WORD
stackmin
;
/* Lowest stack address used so far */
WORD
stackbottom
;
/* Bottom of the stack */
}
INSTANCEDATA
;
#include "poppack.h"
#endif
dlls/kernel/local16.c
View file @
55b51eab
...
...
@@ -35,13 +35,13 @@
#include <string.h>
#include "wine/winbase16.h"
#include "wownt32.h"
#include "instance.h"
#include "local.h"
#include "global.h"
#include "module.h"
#include "stackframe.h"
#include "selectors.h"
#include "toolhelp.h"
#include "kernel_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
local
);
...
...
dlls/kernel/task.c
View file @
55b51eab
...
...
@@ -40,7 +40,6 @@
#include "drive.h"
#include "file.h"
#include "global.h"
#include "instance.h"
#include "module.h"
#include "winternl.h"
#include "selectors.h"
...
...
dlls/kernel/vxd.c
View file @
55b51eab
...
...
@@ -40,7 +40,7 @@
#include "winnt.h"
#include "winternl.h"
#include "miscemu.h"
#include "
callback
.h"
#include "
kernel_private
.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
vxd
);
...
...
include/callback.h
deleted
100644 → 0
View file @
7999469e
/*
* Callback functions
*
* Copyright 1995 Alexandre Julliard
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_CALLBACK_H
#define __WINE_CALLBACK_H
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winnt.h>
typedef
struct
{
void
(
WINAPI
*
EmulateInterruptPM
)(
CONTEXT86
*
context
,
BYTE
intnum
);
void
(
WINAPI
*
CallBuiltinHandler
)(
CONTEXT86
*
context
,
BYTE
intnum
);
/* I/O functions */
DWORD
(
WINAPI
*
inport
)(
int
port
,
int
size
);
void
(
WINAPI
*
outport
)(
int
port
,
int
size
,
DWORD
val
);
}
DOSVM_TABLE
;
extern
DOSVM_TABLE
Dosvm
;
#endif
/* __WINE_CALLBACK_H */
include/instance.h
deleted
100644 → 0
View file @
7999469e
/*
* Instance data declaration
*
* Copyright 1995 Alexandre Julliard
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_INSTANCE_H
#define __WINE_INSTANCE_H
#include <windef.h>
/* This structure is always located at offset 0 of the DGROUP segment */
typedef
struct
{
WORD
null
;
/* Always 0 */
DWORD
old_ss_sp
WINE_PACKED
;
/* Stack pointer; used by SwitchTaskTo() */
WORD
heap
;
/* Pointer to the local heap information (if any) */
WORD
atomtable
;
/* Pointer to the local atom table (if any) */
WORD
stacktop
;
/* Top of the stack */
WORD
stackmin
;
/* Lowest stack address used so far */
WORD
stackbottom
;
/* Bottom of the stack */
}
INSTANCEDATA
;
#endif
/* __WINE_INSTANCE_H */
msdos/dpmi.c
View file @
55b51eab
...
...
@@ -25,7 +25,7 @@
#include "windef.h"
#include "winbase.h"
#include "
callback
.h"
#include "
kernel_private
.h"
#include "wine/debug.h"
#include "wine/windef16.h"
...
...
msdos/int21.c
View file @
55b51eab
...
...
@@ -55,10 +55,10 @@
#include "winerror.h"
#include "drive.h"
#include "file.h"
#include "callback.h"
#include "msdos.h"
#include "miscemu.h"
#include "task.h"
#include "kernel_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
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