Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
56dff0d4
Commit
56dff0d4
authored
Nov 20, 2002
by
Jukka Heinonen
Committed by
Alexandre Julliard
Nov 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some Win32s specific code.
parent
1a6afad1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
39 deletions
+6
-39
krnl386.exe.spec
dlls/kernel/krnl386.exe.spec
+2
-2
selectors.h
include/selectors.h
+0
-5
selector.c
memory/selector.c
+2
-32
vxd.c
msdos/vxd.c
+2
-0
No files found.
dlls/kernel/krnl386.exe.spec
View file @
56dff0d4
...
...
@@ -186,8 +186,8 @@
183 equate __0000H 0
184 pascal GlobalDOSAlloc(long) GlobalDOSAlloc16
185 pascal16 GlobalDOSFree(word) GlobalDOSFree16
186 pascal GetSelectorBase(word)
WIN16_
GetSelectorBase
187 pascal16 SetSelectorBase(word long)
WIN16_
SetSelectorBase
186 pascal GetSelectorBase(word) GetSelectorBase
187 pascal16 SetSelectorBase(word long) SetSelectorBase
188 pascal GetSelectorLimit(word) GetSelectorLimit16
189 pascal16 SetSelectorLimit(word long) SetSelectorLimit16
190 equate __E000H 0
...
...
include/selectors.h
View file @
56dff0d4
...
...
@@ -28,11 +28,6 @@ extern WORD SELECTOR_AllocBlock( const void *base, DWORD size, unsigned char fla
extern
WORD
SELECTOR_ReallocBlock
(
WORD
sel
,
const
void
*
base
,
DWORD
size
);
extern
void
SELECTOR_FreeBlock
(
WORD
sel
);
extern
UINT
W32S_offset
;
#define W32S_APP2WINE(addr) ((addr)? (DWORD)(addr) + W32S_offset : 0)
#define W32S_WINE2APP(addr) ((addr)? (DWORD)(addr) - W32S_offset : 0)
#define FIRST_LDT_ENTRY_TO_ALLOC 17
#define IS_SELECTOR_FREE(sel) (!(wine_ldt_copy.flags[LOWORD(sel) >> 3] & WINE_LDT_FLAGS_ALLOCATED))
...
...
memory/selector.c
View file @
56dff0d4
...
...
@@ -315,22 +315,7 @@ void WINAPI LongPtrAdd16( DWORD ptr, DWORD add )
/***********************************************************************
* GetSelectorBase (KERNEL.186)
*/
DWORD
WINAPI
WIN16_GetSelectorBase
(
WORD
sel
)
{
/*
* Note: For Win32s processes, the whole linear address space is
* shifted by 0x10000 relative to the OS linear address space.
* See the comment in msdos/vxd.c.
*/
DWORD
base
=
GetSelectorBase
(
sel
);
return
W32S_WINE2APP
(
base
);
}
/***********************************************************************
* GetSelectorBase
* GetSelectorBase (KERNEL.186)
*/
DWORD
WINAPI
GetSelectorBase
(
WORD
sel
)
{
...
...
@@ -344,22 +329,7 @@ DWORD WINAPI GetSelectorBase( WORD sel )
/***********************************************************************
* SetSelectorBase (KERNEL.187)
*/
DWORD
WINAPI
WIN16_SetSelectorBase
(
WORD
sel
,
DWORD
base
)
{
/*
* Note: For Win32s processes, the whole linear address space is
* shifted by 0x10000 relative to the OS linear address space.
* See the comment in msdos/vxd.c.
*/
SetSelectorBase
(
sel
,
W32S_APP2WINE
(
base
)
);
return
sel
;
}
/***********************************************************************
* SetSelectorBase
* SetSelectorBase (KERNEL.187)
*/
WORD
WINAPI
SetSelectorBase
(
WORD
sel
,
DWORD
base
)
{
...
...
msdos/vxd.c
View file @
56dff0d4
...
...
@@ -45,6 +45,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
vxd
);
#define W32S_APP2WINE(addr) ((addr)? (DWORD)(addr) + W32S_offset : 0)
#define W32S_WINE2APP(addr) ((addr)? (DWORD)(addr) - W32S_offset : 0)
#define VXD_BARF(context,name) \
DPRINTF( "vxd %s: unknown/not implemented parameters:\n" \
...
...
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