]> code.delx.au - pulseaudio/blobdiff - src/pulsecore/macro.h
remap: Change remapping function argument type from void to int16_t / float as approp...
[pulseaudio] / src / pulsecore / macro.h
index 39d6a9890818a06860974762dfc3173d55dab2fe..4d5e80f4e057c67ace657ae103c3a2cd5b111c82 100644 (file)
@@ -177,21 +177,6 @@ static inline size_t PA_PAGE_ALIGN(size_t l) {
 #define PA_CLIP_SUB(a, b) ((a) > (b) ? (a) - (b) : 0)
 #endif
 
-/* This type is not intended to be used in exported APIs! Use classic "int" there! */
-#ifdef HAVE_STD_BOOL
-typedef bool pa_bool_t;
-#else
-typedef int pa_bool_t;
-#endif
-
-#ifndef FALSE
-#define FALSE ((pa_bool_t) 0)
-#endif
-
-#ifndef TRUE
-#define TRUE (!FALSE)
-#endif
-
 #ifdef __GNUC__
 #define PA_PRETTY_FUNCTION __PRETTY_FUNCTION__
 #else