mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03: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;
|
|
}
|