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
78c4dd34
Commit
78c4dd34
authored
Jul 05, 2002
by
Gregg Mattinson
Committed by
Alexandre Julliard
Jul 05, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented FormatMessage for sparc. Since the va_list is stored in
memory like __i386__, the same implementation should work.
parent
7015ce30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
format_msg.c
dlls/kernel/format_msg.c
+2
-2
No files found.
dlls/kernel/format_msg.c
View file @
78c4dd34
...
...
@@ -158,7 +158,7 @@ DWORD WINAPI FormatMessageA(
va_list
*
_args
)
{
LPDWORD
args
=
(
LPDWORD
)
_args
;
#if
def __i386__
#if
defined(__i386__) || defined(__sparc__)
/* This implementation is completely dependant on the format of the va_list on x86 CPUs */
LPSTR
target
,
t
;
DWORD
talloced
;
...
...
@@ -386,7 +386,7 @@ DWORD WINAPI FormatMessageW(
va_list
*
_args
)
{
LPDWORD
args
=
(
LPDWORD
)
_args
;
#if
def __i386__
#if
defined(__i386__) || defined(__sparc__)
/* This implementation is completely dependant on the format of the va_list on x86 CPUs */
LPSTR
target
,
t
;
DWORD
talloced
;
...
...
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