test: rework lib stuff to share common files

This commit is contained in:
Michele Caini
2023-01-18 10:17:54 +01:00
parent a3d9503a17
commit f94de1c069
34 changed files with 28 additions and 24 deletions

View File

@@ -0,0 +1,19 @@
#include <cr.h>
#include <entt/locator/locator.hpp>
#include "types.h"
CR_EXPORT int cr_main(cr_plugin *ctx, cr_op operation) {
switch(operation) {
case CR_LOAD:
entt::locator<service>::reset(static_cast<userdata *>(ctx->userdata)->handle);
break;
case CR_STEP:
entt::locator<service>::value().value = static_cast<userdata *>(ctx->userdata)->value;
break;
case CR_UNLOAD:
case CR_CLOSE:
break;
}
return 0;
}