mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-24 15:38:54 -06:00
16 lines
139 B
C
16 lines
139 B
C
#ifdef _MSC_VER
|
|
# include "windows.h"
|
|
#else
|
|
# define WINAPI
|
|
#endif
|
|
|
|
int WINAPI foo(void)
|
|
{
|
|
return 10;
|
|
}
|
|
|
|
int bar(void)
|
|
{
|
|
return 5;
|
|
}
|