Bochs/bochs-testing/plugin-test/test4-interdep/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

12 lines
182 B
C++

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