Commit 63823295 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

include: Remove vlc_bool_t, VLC_TRUE, and VLC_FALSE definitions.

parent 449fd28a
...@@ -45,7 +45,6 @@ extern "C" { ...@@ -45,7 +45,6 @@ extern "C" {
/***************************************************************************** /*****************************************************************************
* Our custom types * Our custom types
*****************************************************************************/ *****************************************************************************/
typedef bool vlc_bool_t; /* (shouldn't be exposed) */
typedef struct vlc_list_t vlc_list_t; /* (shouldn't be exposed) */ typedef struct vlc_list_t vlc_list_t; /* (shouldn't be exposed) */
typedef struct vlc_object_t vlc_object_t; /* (shouldn't be exposed) */ typedef struct vlc_object_t vlc_object_t; /* (shouldn't be exposed) */
...@@ -109,12 +108,6 @@ struct vlc_list_t ...@@ -109,12 +108,6 @@ struct vlc_list_t
#define VLC_EEXITSUCCESS -999 /* Program exited successfully */ #define VLC_EEXITSUCCESS -999 /* Program exited successfully */
#define VLC_EGENERIC -666 /* Generic error */ #define VLC_EGENERIC -666 /* Generic error */
/*****************************************************************************
* Booleans (shouldn't be exposed)
*****************************************************************************/
#define VLC_FALSE false
#define VLC_TRUE true
/** /**
* \defgroup var_type Variable types (shouldn't be exposed) * \defgroup var_type Variable types (shouldn't be exposed)
* These are the different types a vlc variable can have. * These are the different types a vlc variable can have.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment