freerdp/winpr/libwinpr/library/test/TestLibraryA/TestLibraryA.c

15 lines
243 B
C
Raw Normal View History

2023-05-09 21:29:50 +00:00
#include <winpr/spec.h>
DECLSPEC_EXPORT int FunctionA(int a, int b);
DECLSPEC_EXPORT int FunctionB(int a, int b);
int FunctionA(int a, int b)
{
return (a * b); /* multiply */
}
int FunctionB(int a, int b)
{
return (a / b); /* divide */
}