mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-07 06:52:41 +00:00
pluginloader-win32: create no window
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8354>
This commit is contained in:
parent
a6eb1de87d
commit
345eae97d4
1 changed files with 2 additions and 2 deletions
|
@ -348,8 +348,8 @@ gst_plugin_loader_try_helper (GstPluginLoader * self, gchar * location)
|
|||
GST_LOG ("Trying to spawn gst-plugin-scanner helper at %s, command %s",
|
||||
location, cmd);
|
||||
ret = CreateProcessW (NULL, (WCHAR *) wcmd, NULL, NULL, FALSE,
|
||||
CREATE_UNICODE_ENVIRONMENT, (LPVOID) self->env_string, NULL, &si,
|
||||
&self->child_info);
|
||||
CREATE_UNICODE_ENVIRONMENT | CREATE_NO_WINDOW, (LPVOID) self->env_string,
|
||||
NULL, &si, &self->child_info);
|
||||
|
||||
if (!ret) {
|
||||
last_err = GetLastError ();
|
||||
|
|
Loading…
Reference in a new issue