feature: correct dll function handling

This commit is contained in:
Dobin Rutishauser
2025-06-22 21:57:37 +02:00
parent 8fa1895cf6
commit f40161b206
5 changed files with 48 additions and 29 deletions
+4
View File
@@ -98,6 +98,10 @@
<!-- Input: DLL function -->
{% if exports != [] %}
<select class="form-select" name="dllfunc" aria-label="DLLFUNC" onchange="this.form.submit()">
<option value=""
{% if "" == settings.dllfunc %} selected {% endif %}
>DllMain</option>
{% for export in exports %}
<option value="{{export['name']}}"
{% if export["name"] == settings.dllfunc %} selected {% endif %}