mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 09:50:43 +00:00
[DLLEXPORT_TEST] Fix duplicated export on non-x86 architectures
This commit is contained in:
parent
175abab7ad
commit
eaf24cc380
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@
|
|||
@ stdcall StdcallFunc1(ptr)
|
||||
|
||||
# Decorated export of a stdcall function
|
||||
@ stdcall _StdcallFunc1@4(ptr)
|
||||
@ stdcall -arch=i386 _DecoratedStdcallFunc1@4(ptr)
|
||||
@ stdcall -arch=i386 _StdcallFunc1@4(ptr) # Reuse function name on x86 only!
|
||||
@ stdcall _DecoratedStdcallFunc1@4(ptr)
|
||||
|
||||
# Redirected stdcall function
|
||||
@ stdcall StdcallFunc2(ptr) StdcallFunc1
|
||||
|
|
Loading…
Reference in a new issue