Bochs/bochs-testing/plugin-test/test4-interdep/module2.cc

13 lines
221 B
C++
Raw Normal View History

#include <stdio.h>
#define DLLINTERFACE __declspec(dllexport)
#include "module2.h"
#undef DLLINTERFACE
int n_operations = 0;
void operation_occurred () {
printf ("module2: operation_occurred\n");
n_operations++;
}