Bochs/bochs-testing/plugin-test/test2-dynamic/module1.cc
Bryce Denney 2f74efdb0a - rewrite DLL macros, now somewhat closer to how LT_SCOPE is written
in <ltdl.h>.  Now go back to Linux and test.
2002-10-11 15:59:21 +00:00

10 lines
136 B
C++

#define MODULE1_DLL_EXPORT
#include "module1.h"
const char *module_name = "AddModule";
int operate (int a, int b)
{
return a + b;
}