mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
86d2e8f543
Add a test that checks the ability to link to function and data exports with cdecl, stdcall and c++ mangled names, including forwarders. It just prints "done". Feel free to convert it into a proper rostests, if you think it's required. svn path=/trunk/; revision=62269
23 lines
512 B
Python
23 lines
512 B
Python
|
|
# Normal export of a cdecl function
|
|
@ cdecl CdeclFunc0()
|
|
@ cdecl CdeclFunc1(ptr)
|
|
|
|
# Normal export of a stdcall function
|
|
@ stdcall StdcallFunc0()
|
|
@ stdcall StdcallFunc1(ptr)
|
|
|
|
# Decorated export of a stdcall function
|
|
@ stdcall _DecoratedStdcallFunc1@4(ptr)
|
|
|
|
# Normal export of a fastcall function
|
|
@ fastcall FastcallFunc0()
|
|
@ fastcall FastcallFunc1(ptr)
|
|
|
|
# Decorated export of a fastcall function
|
|
@ fastcall @DecoratedFastcallFunc1@4(ptr)
|
|
|
|
# Normal export of data
|
|
@ extern DataItem1
|
|
@ extern DataItem2
|
|
|