2016-05-26 13:19:36 +03:00
|
|
|
#include <winpr/spec.h>
|
2012-10-05 07:19:05 +04:00
|
|
|
|
2016-05-26 13:19:36 +03:00
|
|
|
DECLSPEC_EXPORT int FunctionA(int a, int b);
|
|
|
|
DECLSPEC_EXPORT int FunctionB(int a, int b);
|
2012-10-05 07:19:05 +04:00
|
|
|
|
|
|
|
int FunctionA(int a, int b)
|
|
|
|
{
|
|
|
|
return (a * b); /* multiply */
|
|
|
|
}
|
|
|
|
|
|
|
|
int FunctionB(int a, int b)
|
|
|
|
{
|
|
|
|
return (a / b); /* divide */
|
|
|
|
}
|