pluginloader-win32: create no window

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8387>
This commit is contained in:
Corentin Damman 2025-01-30 14:57:15 +01:00 committed by GStreamer Marge Bot
parent 12d2a4e2a1
commit 0268ee9c52

View file

@ -1090,7 +1090,8 @@ gst_plugin_loader_new (GstRegistry * registry)
/* Checks whether helper bin is installed or not. Expected exit code is 1 */
ret = CreateProcessW (NULL, helper_bin_location_wide, NULL, NULL, FALSE,
CREATE_UNICODE_ENVIRONMENT, env_string, NULL, &si, &pi);
CREATE_UNICODE_ENVIRONMENT | CREATE_NO_WINDOW, env_string,
NULL, &si, &pi);
g_free (helper_bin_location_wide);
if (!ret) {