summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-09-26 10:03:56 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-09-26 10:03:56 +0000
commit537c7546f946d266e55fdbce03558352a3342908 (patch)
tree9e594c9d40ec54047fa858472f737bc4d7b7d406 /apps/settings.h
parent9f960e405f72e1f624797547e1ad8e9584206118 (diff)
downloadrockbox-537c7546f946d266e55fdbce03558352a3342908.tar.gz
rockbox-537c7546f946d266e55fdbce03558352a3342908.zip
Patch #4899 by Robert Keevil - Automatic pause on iPod when removing the headphones
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11057 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 561dc59375..9f8372415a 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -486,6 +486,12 @@ struct user_settings
486#endif 486#endif
487 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */ 487 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
488 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */ 488 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
489
490#ifdef HAVE_HEADPHONE_DETECTION
491 int unplug_mode; /* pause on headphone unplug */
492 int unplug_rw; /* time in s to rewind when pausing */
493 bool unplug_autoresume; /* disable auto-resume if no phones */
494#endif
489}; 495};
490 496
491enum optiontype { INT, BOOL }; 497enum optiontype { INT, BOOL };