blob: 115f9b9e0a81308f324c086e685489d3ed31f193 [file] [log] [blame]
void
__cdecl
lib2foocdecl(int junk1, int* junk2)
{
*junk2 = junk1;
}
void
__stdcall
lib2foostdcall(int junk1, int* junk2)
{
*junk2 = junk1;
}
void
__fastcall
lib2foofastcall(int junk1, int* junk2)
{
*junk2 = junk1;
}