FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
TestLibraryB.c
1#include <winpr/spec.h>
2
3DECLSPEC_EXPORT int FunctionA(int a, int b);
4DECLSPEC_EXPORT int FunctionB(int a, int b);
5
6int FunctionA(int a, int b)
7{
8 return (a + b); /* add */
9}
10
11int FunctionB(int a, int b)
12{
13 return (a - b); /* subtract */
14}