mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-11 08:52:39 +00:00
pluginloader-win32: create no window
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8387>
This commit is contained in:
parent
12d2a4e2a1
commit
0268ee9c52
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue