FreeRDP
TestLibraryA.c
1
#include <winpr/spec.h>
2
3
DECLSPEC_EXPORT
int
FunctionA(
int
a,
int
b);
4
DECLSPEC_EXPORT
int
FunctionB(
int
a,
int
b);
5
6
int
FunctionA(
int
a,
int
b)
7
{
8
return
(a * b);
/* multiply */
9
}
10
11
int
FunctionB(
int
a,
int
b)
12
{
13
return
(a / b);
/* divide */
14
}
winpr
libwinpr
library
test
TestLibraryA
TestLibraryA.c
Generated by
1.9.1