Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
1f7fce3c
Commit
1f7fce3c
authored
23 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Fixed compile for !MZ_SUPPORTED.
parent
60fd03d2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/winedos/module.c
+12
-4
12 additions, 4 deletions
dlls/winedos/module.c
with
12 additions
and
4 deletions
dlls/winedos/module.c
+
12
−
4
View file @
1f7fce3c
...
...
@@ -584,6 +584,15 @@ void WINAPI MZ_Exit( CONTEXT86 *context, BOOL cs_psp, WORD retval )
ExitThread
(
retval
);
}
/***********************************************************************
* MZ_Current
*/
BOOL
WINAPI
MZ_Current
(
void
)
{
return
(
write_pipe
!=
-
1
);
/* FIXME: do a better check */
}
#else
/* !MZ_SUPPORTED */
/***********************************************************************
...
...
@@ -611,7 +620,6 @@ BOOL WINAPI MZ_Exec( CONTEXT86 *context, LPCSTR filename, BYTE func, LPVOID para
void
WINAPI
MZ_AllocDPMITask
(
void
)
{
ERR
(
"Actual real-mode calls not supported on this platform!
\n
"
);
return
NULL
;
}
/***********************************************************************
...
...
@@ -622,12 +630,12 @@ void WINAPI MZ_Exit( CONTEXT86 *context, BOOL cs_psp, WORD retval )
ExitThread
(
retval
);
}
#endif
/* !MZ_SUPPORTED */
/***********************************************************************
* MZ_Current
*/
BOOL
WINAPI
MZ_Current
(
void
)
{
return
(
write_pipe
!=
-
1
);
/* FIXME: do a better check */
return
FALSE
;
}
#endif
/* !MZ_SUPPORTED */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment