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
e2fa2990
Commit
e2fa2990
authored
Jan 24, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Declare some functions static.
parent
2705a96a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
dosexe.h
dlls/winedos/dosexe.h
+0
-2
himem.c
dlls/winedos/himem.c
+2
-2
No files found.
dlls/winedos/dosexe.h
View file @
e2fa2990
...
...
@@ -407,8 +407,6 @@ extern void WINAPI DOSVM_Int3eHandler(CONTEXT86*);
/* himem.c */
extern
void
DOSVM_InitSegments
(
void
);
extern
LPVOID
DOSVM_AllocUMB
(
DWORD
);
extern
LPVOID
DOSVM_AllocCodeUMB
(
DWORD
,
WORD
*
,
WORD
*
);
extern
LPVOID
DOSVM_AllocDataUMB
(
DWORD
,
WORD
*
,
WORD
*
);
/* int09.c */
...
...
dlls/winedos/himem.c
View file @
e2fa2990
...
...
@@ -66,7 +66,7 @@ static DWORD DOSVM_umb_free = DOSVM_UMB_BOTTOM;
* overhead. Use of this routine also preserves precious DOS
* conventional memory.
*/
LPVOID
DOSVM_AllocUMB
(
DWORD
size
)
static
LPVOID
DOSVM_AllocUMB
(
DWORD
size
)
{
LPVOID
ptr
=
(
LPVOID
)
DOSVM_umb_free
;
...
...
@@ -113,7 +113,7 @@ static WORD alloc_selector( void *base, DWORD size, unsigned char flags )
*
* FIXME: should allocate a single PM selector for the whole UMB range.
*/
LPVOID
DOSVM_AllocCodeUMB
(
DWORD
size
,
WORD
*
segment
,
WORD
*
selector
)
static
LPVOID
DOSVM_AllocCodeUMB
(
DWORD
size
,
WORD
*
segment
,
WORD
*
selector
)
{
LPVOID
ptr
=
DOSVM_AllocUMB
(
size
);
...
...
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