SDHotSwapModule/source/exports.cpp
2022-04-28 20:17:53 +02:00

58 lines
1.2 KiB
C++

#include "exports.h"
#include <cstring>
#include <sdutils/sdutils.h>
#include <wums.h>
#define MAX_HANDLERS 16
static SDAttachHandlerFn sHandlers[MAX_HANDLERS] = {nullptr};
void callAttachCallbacks(SDUtilsAttachStatus status) {
int i;
for (i = 0; i < MAX_HANDLERS; ++i) {
if (sHandlers[i]) {
sHandlers[i](status);
}
}
}
void cleanUpAttachCallbacks() {
memset(sHandlers, 0, sizeof(sHandlers));
}
bool SDUtilsAddAttachHandler(SDAttachHandlerFn fn) {
int i;
for (i = 0; i < MAX_HANDLERS; ++i) {
if (sHandlers[i] == fn) {
return true;
}
if (!sHandlers[i]) {
sHandlers[i] = fn;
return true;
}
}
return false;
}
bool SDUtilsRemoveAttachHandler(SDAttachHandlerFn fn) {
int i;
for (i = 0; i < MAX_HANDLERS; ++i) {
if (sHandlers[i] == fn) {
sHandlers[i] = nullptr;
return true;
}
}
return false;
}
SDUtilsVersion SDUtilsGetVersion() {
return SDUTILS_MODULE_VERSION;
}
WUMS_EXPORT_FUNCTION(SDUtilsGetVersion);
WUMS_EXPORT_FUNCTION(SDUtilsAddAttachHandler);
WUMS_EXPORT_FUNCTION(SDUtilsRemoveAttachHandler);