Bochs/bochs-testing/plugin-test/test3-twomodules/module1.cc
Bryce Denney 8f94d0a35b - 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 16:09:21 +00:00

11 lines
157 B
C++

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