2002-10-16 16:24:43 +04:00
|
|
|
#include <stdio.h>
|
2002-10-11 19:59:21 +04:00
|
|
|
#define MODULE1_DLL_EXPORT
|
2002-10-11 18:51:27 +04:00
|
|
|
#include "module1.h"
|
|
|
|
|
|
|
|
const char *module_name = "AddModule";
|
|
|
|
|
|
|
|
int operate (int a, int b)
|
|
|
|
{
|
2002-10-16 16:24:43 +04:00
|
|
|
printf ("module1: operate was called\n");
|
2002-10-11 18:51:27 +04:00
|
|
|
return a + b;
|
|
|
|
}
|