Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
a9bedef3
Commit
a9bedef3
authored
Mar 20, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed name of the asm version of RtlUlong/shortByteSwap to avoid
conflicts with the inline version.
parent
fea01649
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
rtl.c
dlls/ntdll/rtl.c
+2
-2
No files found.
dlls/ntdll/ntdll.spec
View file @
a9bedef3
...
...
@@ -532,7 +532,7 @@
@ stdcall RtlTimeToSecondsSince1970(ptr ptr)
@ stdcall RtlTimeToSecondsSince1980(ptr ptr)
@ stdcall RtlTimeToTimeFields (long long)
@ cdecl -i386 -norelay RtlUlongByteSwap()
@ cdecl -i386 -norelay RtlUlongByteSwap()
NTDLL_RtlUlongByteSwap
@ cdecl -ret64 RtlUlonglongByteSwap(long long)
@ stdcall RtlUnicodeStringToAnsiSize(ptr)
@ stdcall RtlUnicodeStringToAnsiString(ptr ptr long)
...
...
@@ -558,7 +558,7 @@
@ stdcall RtlUpperChar(long)
@ stdcall RtlUpperString(ptr ptr)
@ stub RtlUsageHeap
@ cdecl -i386 -norelay RtlUshortByteSwap()
@ cdecl -i386 -norelay RtlUshortByteSwap()
NTDLL_RtlUshortByteSwap
@ stub RtlValidAcl
@ stdcall RtlValidSecurityDescriptor(ptr)
@ stdcall RtlValidSid(ptr)
...
...
dlls/ntdll/rtl.c
View file @
a9bedef3
...
...
@@ -709,7 +709,7 @@ ULONGLONG __cdecl RtlUlonglongByteSwap(ULONGLONG i)
* ix86 version takes argument in %ecx. Other systems use the inline version.
*/
#ifdef __i386__
__ASM_GLOBAL_FUNC
(
RtlUlongByteSwap
,
__ASM_GLOBAL_FUNC
(
NTDLL_
RtlUlongByteSwap
,
"movl %ecx,%eax
\n\t
"
"bswap %eax
\n\t
"
"ret"
);
...
...
@@ -724,7 +724,7 @@ __ASM_GLOBAL_FUNC(RtlUlongByteSwap,
* i386 version takes argument in %cx. Other systems use the inline version.
*/
#ifdef __i386__
__ASM_GLOBAL_FUNC
(
RtlUshortByteSwap
,
__ASM_GLOBAL_FUNC
(
NTDLL_
RtlUshortByteSwap
,
"movb %ch,%al
\n\t
"
"movb %cl,%ah
\n\t
"
"ret"
);
...
...
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