Browse Source

modules: include vlc_configuration.h when using config_GetSysPath()

pull/162/head
Steve Lhomme 3 years ago
parent
commit
41db93b5b0
  1. 1
      modules/access/dvb/linux_dvb.c
  2. 1
      modules/audio_filter/channel_mixer/spatialaudio.cpp
  3. 1
      modules/demux/ytdl.c
  4. 1
      modules/gui/skins2/win32/win32_factory.cpp
  5. 1
      modules/gui/skins2/x11/x11_factory.cpp
  6. 1
      modules/notify/notify.c
  7. 1
      modules/visualization/projectm.cpp

1
modules/access/dvb/linux_dvb.c

@ -30,6 +30,7 @@
#endif
#include <vlc_common.h>
#include <vlc_configuration.h>
#include <vlc_access.h>
#include <vlc_fs.h>

1
modules/audio_filter/channel_mixer/spatialaudio.cpp

@ -31,6 +31,7 @@
#include <cassert>
#include <vlc_common.h>
#include <vlc_configuration.h>
#include <vlc_plugin.h>
#include <vlc_aout.h>
#include <vlc_filter.h>

1
modules/demux/ytdl.c

@ -31,6 +31,7 @@
#include "json/json.h"
#include <vlc_common.h>
#include <vlc_configuration.h>
#include <vlc_demux.h>
#include <vlc_stream.h>
#include <vlc_fs.h>

1
modules/gui/skins2/win32/win32_factory.cpp

@ -44,6 +44,7 @@
#include "../src/generic_window.hpp"
#include "../commands/cmd_dialogs.hpp"
#include "../commands/cmd_minimize.hpp"
#include <vlc_configuration.h>
// Custom message for the notifications of the system tray
#define MY_WM_TRAYACTION (WM_APP + 1)

1
modules/gui/skins2/x11/x11_factory.cpp

@ -40,6 +40,7 @@
#include "../src/generic_window.hpp"
#include <vlc_common.h>
#include <vlc_configuration.h>
#include <vlc_xlib.h>
X11Factory::X11Factory( intf_thread_t *pIntf ): OSFactory( pIntf ),

1
modules/notify/notify.c

@ -29,6 +29,7 @@
#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
#include <vlc_common.h>
#include <vlc_configuration.h>
#include <vlc_plugin.h>
#include <vlc_interface.h>
#include <vlc_player.h>

1
modules/visualization/projectm.cpp

@ -26,6 +26,7 @@
#endif
#include <vlc_common.h>
#include <vlc_configuration.h>
#include <vlc_plugin.h>
#include <vlc_aout.h>
#include <vlc_window.h>

Loading…
Cancel
Save