aboutsummaryrefslogtreecommitdiff
path: root/platform/platform.h
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2023-08-15 20:45:39 +1000
committerNicholas Tay <nick@windblume.net>2023-08-15 20:45:39 +1000
commita689ba41dadad0093f7545dd8999d41a165ceb98 (patch)
treeffb517c40ac8a750554eba610574008cfb45d27b /platform/platform.h
parent7d2f0751d0043a4f5ac0c1a6118622202e4e9e47 (diff)
downloadclak-plugin-refactor.tar.gz
clak-plugin-refactor.tar.bz2
clak-plugin-refactor.zip
Initial refactor of plugin system (darwin only)plugin-refactor
Darwin only for now since that's what I'm on, will migrate the others a bit later. Trying out a different plugin system that probably makes more sense as an interface to each other. Might shuffle things around even more later. This is based somewhat on Tsoding's audio visualiser plugin system, I thought that was way more elegant (the 'state' object), as opposed to whatever the hell we were doing.
Diffstat (limited to 'platform/platform.h')
-rw-r--r--platform/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/platform.h b/platform/platform.h
index ca07789..34f1200 100644
--- a/platform/platform.h
+++ b/platform/platform.h
@@ -5,7 +5,7 @@
#include "../board/board.h"
-struct board *load_board(char *board_name);
+bool load_board(struct board_state *state, char *board_name);
bool sound_init(float volume);
void sound_play(unsigned char *buffer, unsigned int buffer_len);