reactos/rostests/tests/dllexport/dllexport_test_dll2.spec
Timo Kreuzer 0339d4e1a5 [ROSTESTS]
disable some tests on x64, since they don't build. Disable some exports from dllexport_test on non-x86 build, since decorations are x86 specific.

svn path=/trunk/; revision=63453
2014-05-25 20:21:02 +00:00

24 lines
523 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 -arch=i386 @DecoratedFastcallFunc1@4(ptr)
# Normal export of data
@ extern DataItem1
@ extern DataItem2