mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
50 lines
2.3 KiB
C
50 lines
2.3 KiB
C
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library.
|
|
Copyright (c) 2020 - Raw Material Software Limited
|
|
|
|
JUCE is an open source library subject to commercial or open-source
|
|
licensing.
|
|
|
|
By using JUCE, you agree to the terms of both the JUCE 6 End-User License
|
|
Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
|
|
|
|
End User License Agreement: www.juce.com/juce-6-licence
|
|
Privacy Policy: www.juce.com/juce-privacy-policy
|
|
|
|
Or: You may also use this code under the terms of the GPL v3 (see
|
|
www.gnu.org/licenses).
|
|
|
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
|
DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
extern "C"
|
|
{
|
|
typedef void* LiveCodeBuilder;
|
|
typedef bool (*SendMessageFunction) (void* userInfo, const void* data, size_t dataSize);
|
|
typedef void (*CrashCallbackFunction) (const char* crashDescription);
|
|
typedef void (*QuitCallbackFunction)();
|
|
typedef void (*SetPropertyFunction) (const char* key, const char* value);
|
|
typedef void (*GetPropertyFunction) (const char* key, char* value, size_t size);
|
|
|
|
// We've used an X macro to define the DLL functions rather than just declaring them, so that
|
|
// we can load the DLL and its functions dynamically and cope with it not being there.
|
|
// The CompileEngineDLL class is a wrapper that manages finding/loading the DLL and exposing
|
|
// these as callable functions.
|
|
#define LIVE_DLL_FUNCTIONS(X) \
|
|
X (projucer_getVersion, int, ()) \
|
|
X (projucer_initialise, void, (CrashCallbackFunction, QuitCallbackFunction, SetPropertyFunction, GetPropertyFunction, bool setupSignals)) \
|
|
X (projucer_shutdown, void, ()) \
|
|
X (projucer_createBuilder, LiveCodeBuilder, (SendMessageFunction, void* userInfo, const char* projectID, const char* cacheFolder)) \
|
|
X (projucer_sendMessage, void, (LiveCodeBuilder, const void* messageData, size_t messageDataSize)) \
|
|
X (projucer_deleteBuilder, void, (LiveCodeBuilder))
|
|
|
|
}
|