This commit is contained in:
2025-03-30 12:21:45 -05:00
parent 2b145098a2
commit 369ae0bdb2
5 changed files with 15 additions and 6 deletions

View File

@@ -1,3 +1,4 @@
#define PRINT_STATIC
#include "Print.h"
Print::Print(void* h, Archimedes::App* a) : Archimedes::Module(h, a) {

View File

@@ -10,8 +10,12 @@ class Print : public Archimedes::Module {
};
#ifndef PRINT_STATIC
extern "C" {
Archimedes::Module* create(void* handle, Archimedes::App* app) {
return new Print(handle, app);
}
}
#endif