mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
12 lines
268 B
C
12 lines
268 B
C
![]() |
#include <stdio.h>
|
||
|
|
||
|
void __stdcall exported_function_stdcall(int i) {
|
||
|
printf("exported_function_stdcall(%d)\n", i);
|
||
|
fflush(stdout);
|
||
|
}
|
||
|
|
||
|
void __fastcall exported_function_fastcall(int i) {
|
||
|
printf("exported_function_fastcall(%d)\n", i);
|
||
|
fflush(stdout);
|
||
|
}
|