pulseaudio/src/pulse
poljar (Damir Jelić) d806b19714 Remove pa_bool_t and replace it with bool.
commands used for this (executed from the pulseaudio/src directory):
    find . -regex '\(.*\.[hc]\|.*\.cc\|.*\.m4\)' -not -name 'macro.h' \
        -a -not -name 'reserve.[ch]' -a -not -name 'reserve-monitor.[ch]' \
        -a -not -name 'glib-mainloop.c' -a -not -name 'gkt-test.c' \
        -a -not -name 'glib-mainloop.c' -a -not -name 'gkt-test.c' \
        -a -not -name 'poll-win32.c' -a -not -name 'thread-win32.c' \
        -a -not -name 'dllmain.c' -a -not -name 'gconf-helper.c' \
        -exec sed -i -e 's/\bpa_bool_t\b/bool/g' \
        -e 's/\bTRUE\b/true/g' -e 's/\bFALSE\b/false/g' {} \;

and:
    sed -i -e '181,194!s/\bpa_bool_t\b/bool/' \
        -e '181,194!s/\bTRUE\b/true/' -e \
        '181,194!s/\bFALSE\b/false/' pulsecore/macro.h
2013-07-04 12:25:30 +03:00
..
.gitignore add another .gitignore file, this time for pulse/ 2008-06-18 00:47:32 +02:00
cdecl.h Use LGPL 2.1 on all files previously using LGPL 2 2009-03-03 20:23:02 +00:00
channelmap.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
channelmap.h Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
client-conf-x11.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
client-conf-x11.h Use LGPL 2.1 on all files previously using LGPL 2 2009-03-03 20:23:02 +00:00
client-conf.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
client-conf.h Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
client.conf.in client.conf.in: Typo. s/a/are/ 2010-02-02 09:02:21 +01:00
context.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
context.h fix the ever-popular 'the the' typo 2012-01-28 17:51:59 +02:00
def.h doc: Some more nitpicking in pulse/def.h doxygen documentation 2013-04-17 08:12:23 +02:00
error.c error: Fix spelling of 'initialization' in errortab for PA_ERR_MODINITFAILED 2011-12-12 23:57:54 +00:00
error.h Remove unnecessary #includes 2011-06-22 23:12:20 +01:00
ext-device-manager.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
ext-device-manager.h Remove unnecessary #includes 2011-06-22 23:12:20 +01:00
ext-device-restore.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
ext-device-restore.h device-restore: Change the API to include type information (sink vs. source) 2011-08-18 17:33:08 +01:00
ext-stream-restore.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
ext-stream-restore.h Remove unnecessary #includes 2011-06-22 23:12:20 +01:00
fork-detect.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
fork-detect.h try to detect when stupid clients forks and refuse all service from then on 2009-03-05 04:33:40 +01:00
format.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
format.h format: Add #defines for enum values 2013-02-22 14:25:36 +02:00
gccmacro.h gccmacro: Disable printf-like format checking on mingw32 compilers. 2012-10-23 15:50:23 +05:30
glib-mainloop.c glib: Stop using g_source_get_current_time() 2012-06-28 20:00:00 +05:30
glib-mainloop.h doxygen: Add 'See also' linking to the overview page 2010-10-13 09:07:39 +01:00
internal.h Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
introspect.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
introspect.h introspect: Minor documentation fix 2012-11-08 14:57:48 +05:30
mainloop-api.c Move i18n.[ch] to src/pulsecore 2011-08-11 13:23:42 +02:00
mainloop-api.h mainloop: Document need for mainloop lock around pa_mainloop_api_once 2013-06-18 08:20:05 +05:30
mainloop-signal.c mainloop-signal: Explicitly ignore pa_write() return value. 2012-12-19 12:31:50 +02:00
mainloop-signal.h Use LGPL 2.1 on all files previously using LGPL 2 2009-03-03 20:23:02 +00:00
mainloop.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
mainloop.h doxygen: Add 'See also' linking to the overview page 2010-10-13 09:07:39 +01:00
Makefile build-sys: readd stub makefiles to subdirectories to make building with emacs easier 2012-05-15 14:17:58 +02:00
operation.c pulse: Initialize pa_operation objects to all-zero. 2013-01-13 03:15:23 +02:00
operation.h pulse: Document the operation state behavior on context disconnection. 2013-03-13 16:10:16 +02:00
proplist.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
proplist.h doc: Mostly fixing up i.e. versus i.e.\ in doxygen documentation 2013-04-17 08:08:42 +02:00
pulseaudio.h pulse: Document general error handling. 2012-01-28 15:07:20 +02:00
rtclock.c Add sys/time.h include to rtclock.c 2011-06-24 00:29:47 +01:00
rtclock.h Remove unnecessary #includes 2011-06-22 23:12:20 +01:00
sample.c Move i18n.[ch] to src/pulsecore 2011-08-11 13:23:42 +02:00
sample.h doc: Mostly fixing up i.e. versus i.e.\ in doxygen documentation 2013-04-17 08:08:42 +02:00
scache.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
scache.h doxygen: Add 'See also' linking to the overview page 2010-10-13 09:07:39 +01:00
simple.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
simple.h simple: Fix typos in simple.h doxygen documentation 2011-12-12 23:57:54 +00:00
stream.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
stream.h pulse: Fix hole handling in pa_stream_peek(). 2012-11-08 15:38:32 +01:00
subscribe.c Remove unnecessary #includes 2011-06-22 23:12:20 +01:00
subscribe.h Style fix: Remove new lines from opening brackets 2013-06-24 16:56:24 +03:00
thread-mainloop.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
thread-mainloop.h mainloop: Add API to set thread name for threaded mainloop 2013-06-04 00:38:43 +05:30
timeval.c More spelling fixes 2011-08-25 11:27:47 +01:00
timeval.h Spelling fixes in public headers 2011-08-25 11:27:35 +01:00
utf8.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
utf8.h utf8: Fix doxygen file description for utf8.h 2011-12-12 23:57:54 +00:00
util.c win32: Make some unused-variable warnings go away 2011-06-24 00:34:05 +01:00
util.h Remove unnecessary #includes 2011-06-22 23:12:20 +01:00
version.h.in libpulse: Always return a three part version number in API calls. 2011-10-01 13:21:03 +01:00
volume.c Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
volume.h Remove pa_bool_t and replace it with bool. 2013-07-04 12:25:30 +03:00
xmalloc.c Use LGPL 2.1 on all files previously using LGPL 2 2009-03-03 20:23:02 +00:00
xmalloc.h malloc: implement pa_xrenew() 2009-06-17 03:07:42 +02:00