From 2adb9d915858409f3ca7206666dc135527c49d1b Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 16 Feb 2023 22:04:47 +0000 Subject: [PATCH] Tweaked lib runner API --- repl/lib_runner.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/repl/lib_runner.h b/repl/lib_runner.h index 661ec39..bd26ac9 100644 --- a/repl/lib_runner.h +++ b/repl/lib_runner.h @@ -1,13 +1,14 @@ #pragma once +#include "toy_common.h" #include "toy_interpreter.h" int Toy_hookRunner(Toy_Interpreter* interpreter, Toy_Literal identifier, Toy_Literal alias); //file system API - these need to be set by the host -void Toy_initDriveDictionary(); -void Toy_freeDriveDictionary(); -Toy_LiteralDictionary* Toy_getDriveDictionary(); +TOY_API void Toy_initDriveDictionary(); +TOY_API void Toy_freeDriveDictionary(); +TOY_API Toy_LiteralDictionary* Toy_getDriveDictionary(); #define TOY_OPAQUE_TAG_RUNNER 100