Move global variables into a own file

This commit is contained in:
Maschell
2020-05-17 20:40:05 +02:00
parent 441191e40b
commit 3af7de28d8
4 changed files with 16 additions and 2 deletions

6
source/globals.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include "globals.h"
MEMHeapHandle pluginDataHeap __attribute__((section(".data"))) = 0;
plugin_information_t *gPluginInformation __attribute__((section(".data"))) = NULL;
plugin_information_on_reload_t gLinkOnReload __attribute__((section(".data")));