Browse Source

include: include vlc_threads.h when vlc_mutex_t is used

pull/162/head
Steve Lhomme 3 years ago
parent
commit
0a10f3e4a2
  1. 1
      include/vlc_addons.h
  2. 1
      include/vlc_aout.h
  3. 1
      include/vlc_events.h
  4. 1
      include/vlc_extensions.h
  5. 1
      include/vlc_input_item.h
  6. 2
      include/vlc_interface.h
  7. 1
      include/vlc_queue.h

1
include/vlc_addons.h

@ -22,6 +22,7 @@
#define VLC_ADDONS_H 1
#include <vlc_arrays.h>
#include <vlc_threads.h>
# ifdef __cplusplus
extern "C" {

1
include/vlc_aout.h

@ -26,6 +26,7 @@
#include <assert.h>
#include <vlc_list.h>
#include <vlc_es.h>
#include <vlc_threads.h>
/* FIXME to remove once aout.h is cleaned a bit more */
#include <vlc_block.h>

1
include/vlc_events.h

@ -26,6 +26,7 @@
#include <vlc_arrays.h>
#include <vlc_meta.h>
#include <vlc_threads.h>
/**
* \file

1
include/vlc_extensions.h

@ -24,6 +24,7 @@
#define VLC_EXTENSIONS_H
#include "vlc_common.h"
#include "vlc_threads.h"
#include "vlc_arrays.h"
/* Structures */

1
include/vlc_input_item.h

@ -33,6 +33,7 @@
#include <vlc_epg.h>
#include <vlc_events.h>
#include <vlc_list.h>
#include <vlc_threads.h>
#include <string.h>

2
include/vlc_interface.h

@ -25,6 +25,8 @@
#ifndef VLC_INTF_H_
#define VLC_INTF_H_
#include <vlc_threads.h>
# ifdef __cplusplus
extern "C" {
# endif

1
include/vlc_queue.h

@ -31,6 +31,7 @@
#include <stdbool.h>
#include <stdint.h>
#include <vlc_common.h>
#include <vlc_threads.h>
/**
* Opaque type for queue entry.

Loading…
Cancel
Save