JenovaSDK API Reference
Developed by Hamid.Memar (MemarDesign™ LLC.)
 
Loading...
Searching...
No Matches
External Functions

Functions

JENOVA_C_API JenovaSDKInterface GetSDKInterface ()
 Retrieves the JenovaSDK Interface.
 
JENOVA_C_API FunctionPtr GetSDKFunction (StringPtr sdkFunctionName)
 Solves/Retrieves a function pointer from the JenovaSDK Interface.
 

Detailed Description

Exported functions that enable seamless integration with the JenovaSDK Interface from external libraries, such as addons or tools.

Note
For a practical example of using these functions, refer to the ImGui Addon in the Jenova Runtime repository. This addon demonstrates how to integrate the JenovaSDK Interface with an external library.

Function Documentation

◆ GetSDKInterface()

JENOVA_C_API JenovaSDKInterface GetSDKInterface ( )

Retrieves the JenovaSDK Interface.

This function returns the JenovaSDK Interface, which can be used to interact with the JenovaSDK.

Returns
The JenovaSDK Interface.

◆ GetSDKFunction()

JENOVA_C_API FunctionPtr GetSDKFunction ( StringPtr sdkFunctionName)

Solves/Retrieves a function pointer from the JenovaSDK Interface.

This function returns a function pointer from the JenovaSDK Interface, which can be used to call a specific function.

Parameters
sdkFunctionNameThe name of the function to retrieve.
Returns
A function pointer to the specified function.