FreeRDP/winpr/libwinpr/library/test/TestLibraryA/TestLibraryA.c
2012-10-04 23:19:05 -04:00

20 lines
326 B
C

#include <stdio.h>
#include <winpr/crt.h>
#include <winpr/file.h>
#include <winpr/tchar.h>
#include <winpr/windows.h>
WINPR_API int FunctionA(int a, int b);
WINPR_API 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 */
}