~ubuntu-branches/ubuntu/saucy/mpd/saucy

« back to all changes in this revision

Viewing changes to src/event_pipe.h

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad
  • Date: 2011-02-02 12:26:30 UTC
  • mfrom: (1.5.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110202122630-bdyx8w4k94doz4fs
Tags: 0.16.1-1ubuntu1
* Merge from debian unstable. Remaining changes:
  - debian/control:
    + Don't build-depend on libmikmod2-dev (Debian bug #510675).
    + Move avahi-daemon from Suggests field to Recommends field.
  - debian/mpd.init.d:
    + Read mpd user from mpd.conf.
  - debian/control, debian/rules:
    + Add libmp3lame-dev to the build dependencies and enable lame.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2003-2009 The Music Player Daemon Project
 
2
 * Copyright (C) 2003-2010 The Music Player Daemon Project
3
3
 * http://www.musicpd.org
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify
32
32
        /** an idle event was emitted */
33
33
        PIPE_EVENT_IDLE,
34
34
 
35
 
        /** must call syncPlayerAndPlaylist() */
 
35
        /** must call playlist_sync() */
36
36
        PIPE_EVENT_PLAYLIST,
37
37
 
38
38
        /** the current song's tag has changed */
41
41
        /** SIGHUP received: reload configuration, roll log file */
42
42
        PIPE_EVENT_RELOAD,
43
43
 
 
44
        /** a hardware mixer plugin has detected a change */
 
45
        PIPE_EVENT_MIXER,
 
46
 
 
47
        /** shutdown requested */
 
48
        PIPE_EVENT_SHUTDOWN,
 
49
 
44
50
        PIPE_EVENT_MAX
45
51
};
46
52