8f94d0a35b
in <ltdl.h>. Now go back to Linux and test.
11 lines
184 B
C++
11 lines
184 B
C++
#include <stdio.h>
|
|
#define MODULE2_DLL_EXPORT
|
|
#include "module2.h"
|
|
|
|
int n_operations = 0;
|
|
|
|
void operation_occurred () {
|
|
printf ("module2: operation_occurred\n");
|
|
n_operations++;
|
|
}
|