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
8d833ee2
Commit
8d833ee2
authored
Jun 25, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loader: Reserve some more memory to cover the native ole32 addresses.
parent
09712593
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
main.c
loader/main.c
+2
-2
preloader.c
loader/preloader.c
+1
-1
No files found.
loader/main.c
View file @
8d833ee2
...
...
@@ -40,9 +40,9 @@
#ifdef __APPLE__
asm
(
".zerofill WINE_DOS, WINE_DOS, ___wine_dos, 0x
6
0000000"
);
asm
(
".zerofill WINE_DOS, WINE_DOS, ___wine_dos, 0x
7
0000000"
);
asm
(
".zerofill WINE_SHAREDHEAP, WINE_SHAREDHEAP, ___wine_shared_heap, 0x03000000"
);
extern
char
__wine_dos
[
0x
6
0000000
],
__wine_shared_heap
[
0x03000000
];
extern
char
__wine_dos
[
0x
7
0000000
],
__wine_shared_heap
[
0x03000000
];
static
const
struct
wine_preload_info
wine_main_preload_info
[]
=
{
...
...
loader/preloader.c
View file @
8d833ee2
...
...
@@ -110,7 +110,7 @@ static struct wine_preload_info preload_info[] =
{
{
(
void
*
)
0x00000000
,
0x00010000
},
/* low 64k */
{
(
void
*
)
0x00010000
,
0x00100000
},
/* DOS area */
{
(
void
*
)
0x00110000
,
0x
5
fef0000
},
/* low memory area */
{
(
void
*
)
0x00110000
,
0x
6
fef0000
},
/* low memory area */
{
(
void
*
)
0x7f000000
,
0x03000000
},
/* top-down allocations + shared heap + virtual heap */
{
0
,
0
},
/* PE exe range set with WINEPRELOADRESERVE */
{
0
,
0
}
/* end of list */
...
...
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