2002-10-11 19:29:32 +04:00
|
|
|
#include <stdio.h>
|
2002-10-11 20:09:21 +04:00
|
|
|
#define MODULE2_DLL_EXPORT
|
2002-10-11 18:51:27 +04:00
|
|
|
#include "module2.h"
|
|
|
|
|
|
|
|
int n_operations = 0;
|
|
|
|
|
|
|
|
void operation_occurred () {
|
|
|
|
printf ("module2: operation_occurred\n");
|
|
|
|
n_operations++;
|
|
|
|
}
|