mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
21 lines
231 B
C
21 lines
231 B
C
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;
|
|
}
|