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
de662eee
Commit
de662eee
authored
Oct 03, 2005
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert a WARN to a FIXME to make it visible to a user, replace an ERR
by a FIXME as it's more appropriate.
parent
8a4e04a4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
module.c
dlls/winedos/module.c
+2
-2
No files found.
dlls/winedos/module.c
View file @
de662eee
...
@@ -731,7 +731,7 @@ BOOL WINAPI MZ_Current( void )
...
@@ -731,7 +731,7 @@ BOOL WINAPI MZ_Current( void )
*/
*/
void
WINAPI
wine_load_dos_exe
(
LPCSTR
filename
,
LPCSTR
cmdline
)
void
WINAPI
wine_load_dos_exe
(
LPCSTR
filename
,
LPCSTR
cmdline
)
{
{
WARN
(
"DOS executables not supported on this platform
\n
"
);
FIXME
(
"DOS executables not supported on this platform
\n
"
);
SetLastError
(
ERROR_BAD_FORMAT
);
SetLastError
(
ERROR_BAD_FORMAT
);
}
}
...
@@ -750,7 +750,7 @@ BOOL WINAPI MZ_Exec( CONTEXT86 *context, LPCSTR filename, BYTE func, LPVOID para
...
@@ -750,7 +750,7 @@ BOOL WINAPI MZ_Exec( CONTEXT86 *context, LPCSTR filename, BYTE func, LPVOID para
*/
*/
void
WINAPI
MZ_AllocDPMITask
(
void
)
void
WINAPI
MZ_AllocDPMITask
(
void
)
{
{
ERR
(
"Actual real-mode calls not supported on this platform!
\n
"
);
FIXME
(
"Actual real-mode calls not supported on this platform!
\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