CMake/Tests/RunCMake/AutoExportDll/hello2.c

9 lines
140 B
C

#include <stdio.h>
extern int own_auto_export_function(int i);
void hello2()
{
printf("hello exec:%i", own_auto_export_function(41));
}