aboutsummaryrefslogtreecommitdiffstats
path: root/source/elfload.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-08-01 18:53:09 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-08-01 18:53:09 -0400
commit555749ef5dde558f745f0dc6d00a168d3b3e9d58 (patch)
treeeba6929696b04e4d4fb67271f9dee78bfa6ff2e1 /source/elfload.hpp
parent123cc4c756cc8a22f66351ab65595c5a20e53e27 (diff)
8x oversample; other fixes
Diffstat (limited to 'source/elfload.hpp')
-rw-r--r--source/elfload.hpp15
1 files changed, 3 insertions, 12 deletions
diff --git a/source/elfload.hpp b/source/elfload.hpp
index ada35e5..84d49d3 100644
--- a/source/elfload.hpp
+++ b/source/elfload.hpp
@@ -25,18 +25,9 @@ public:
using EntryFunc = Sample *(*)(Sample *, size_t);
static EntryFunc loadFromInternalBuffer();
-
- static EntryFunc loadedElf() {
- return m_entry;
- }
-
- static unsigned char *fileBuffer() {
- return m_file_buffer.data();
- }
-
- static void unload() {
- m_entry = nullptr;
- }
+ static EntryFunc loadedElf();
+ static unsigned char *fileBuffer();
+ static void unload();
private:
static EntryFunc m_entry;