summaryrefslogtreecommitdiff
path: root/recordmydesktop/include
diff options
context:
space:
mode:
authorenselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2008-09-13 12:52:30 +0000
committerenselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2008-09-13 12:52:30 +0000
commitf0b2ba01e43a831900ff27f9e3a481b177be647f (patch)
treeb5e4fa9e2a67d92cfd7c2313c9dc749695de88f0 /recordmydesktop/include
parent28697c059df1f6b276a490123611c439996085c8 (diff)
include/rmdtypes.h: Make ProgData::running, paused, aborted and
pause_state_changed booleans. src/rmd_jack.c src/rmd_timer.c src/rmd_rescue.c src/encode_cache.c src/capture_sound.c src/initialize_data.c src/register_callbacks.c: Adapt. git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@530 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/include')
-rw-r--r--recordmydesktop/include/rmdtypes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/recordmydesktop/include/rmdtypes.h b/recordmydesktop/include/rmdtypes.h
index 776f80d..9225e6f 100644
--- a/recordmydesktop/include/rmdtypes.h
+++ b/recordmydesktop/include/rmdtypes.h
@@ -343,10 +343,10 @@ struct _ProgData {
sound_framesize; //size of each sound frame
/** Progam state vars */
- int running; //1 while the program is capturing/paused/encoding
- int paused; //1 while the program is paused
- int aborted; //1 if we should abort
- int pause_state_changed;//1 if pause state changed
+ boolean running; //1 while the program is capturing/paused/encoding
+ boolean paused; //1 while the program is paused
+ boolean aborted; //1 if we should abort
+ boolean pause_state_changed; //1 if pause state changed
#ifdef HAVE_LIBASOUND
snd_pcm_t *sound_handle;
© All Rights Reserved