Friday, September 20, 2024 4:37:27 AM
> settings

Customize


Authenticate

> _fnc_callExtension.html.erb
<article class="uk-article">
    <h1 class="uk-article-title">ESM_fnc_callExtension</h1>
    <p class="uk-article-meta">Calls ESM.dll with parameters and returns the resulting array</p>
    <h4 class="uk-margin-remove">Input: <code><span class="esm-text-color-toast-yellow">&lt;ARRAY&gt;</span></code></h4>
    <dl class="uk-description-list">
        <dd><code>_this select 0: <span class="esm-text-color-toast-blue">_functionName</span> <span class="esm-text-color-toast-yellow">&lt;STRING&gt;</span></code></dd>
        <dd>The function to be used within ESM.dll</dd>
        <dd><code>_this select 1: <span class="esm-text-color-toast-blue">_parameters</span> <span class="esm-text-color-toast-yellow">&lt;ARRAY&gt;</span></code></dd>
        <dd>An array containing any key/value pair to be assigned as parameters. <code>[key <span class="esm-text-color-toast-yellow">&lt;STRING&gt;</span>, value <span class="esm-text-color-toast-yellow">&lt;ANY&gt;</span>]</code></dd>
    </dl>
    <h4 class="uk-margin-remove">Output: <code><span class="esm-text-color-toast-yellow">&lt;ARRAY&gt;</span></code></h4>
    <dl class="uk-description-list">
        <dd><code>_this select 0: <span class="esm-text-color-toast-blue">_response</span> <span class="esm-text-color-toast-yellow">&lt;BOOL&gt;</span></code></dd>
        <dd>If the process was completed successfully</dd>
        <dd><code>_this select 1: <span class="esm-text-color-toast-blue">_returned</span> <span class="esm-text-color-toast-yellow">&lt;ARRAY&gt;</span></code></dd>
        <dd>An array containing anything to be returned from the command. Most of the time, this will return empty</dd>
    </dl>
    <h4 class="uk-margin-remove">Examples</h4>
    <pre>["test_function_two", []] call ESM_fnc_callExtension;</pre>
    <pre>
[
    "test_function",
    [
        ["count", 50],
        ["message", "Testing!!!"]
    ]
] 
call ESM_fnc_callExtension;
    </pre>
</article>
All opinions represented herein are my own
- © 2024 itsthedevman
- build 340fbb8