diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-04 10:49:37 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-04 10:49:37 +0100 |
commit | 191c8ed12f624ec97b650b2726fed4e8c4bcf04c (patch) | |
tree | 55dee9ec04009399a0e5f8695c0b467bbd7909d4 /platform/windows/export/export_plugin.h | |
parent | af957bf58e0116e5109a41b7cb4eac0fe4f70c75 (diff) | |
parent | 9a33c97c2a1e46f79426fa091c271d273a458bb8 (diff) |
Merge pull request #67434 from bruvzg/win_wrapper
Add console wrapper app to handle console i/o redirection on Windows.
Diffstat (limited to 'platform/windows/export/export_plugin.h')
-rw-r--r-- | platform/windows/export/export_plugin.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/windows/export/export_plugin.h b/platform/windows/export/export_plugin.h index f85331c898..ec3b60aa76 100644 --- a/platform/windows/export/export_plugin.h +++ b/platform/windows/export/export_plugin.h @@ -38,9 +38,8 @@ #include "platform/windows/logo.gen.h" class EditorExportPlatformWindows : public EditorExportPlatformPC { - Error _rcedit_add_data(const Ref<EditorExportPreset> &p_preset, const String &p_path); + Error _rcedit_add_data(const Ref<EditorExportPreset> &p_preset, const String &p_path, bool p_set_icon); Error _code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path); - Error _export_debug_script(const Ref<EditorExportPreset> &p_preset, const String &p_app_name, const String &p_pkg_name, const String &p_path); public: virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override; |