aboutsummaryrefslogtreecommitdiff
path: root/src/common-defs.h
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-01-22 23:37:45 -0600
committerConor Curran <conor.curran@canonical.com>2011-01-22 23:37:45 -0600
commit1ccf02c850145706776fd2c79a30a33a02df50b3 (patch)
treefb0c092292dc76bba69cf5aeff24b3ca13176e0f /src/common-defs.h
parent5f6cebbcfffa32bffada62659e750ab7d362802e (diff)
downloadayatana-indicator-sound-1ccf02c850145706776fd2c79a30a33a02df50b3.tar.gz
ayatana-indicator-sound-1ccf02c850145706776fd2c79a30a33a02df50b3.tar.bz2
ayatana-indicator-sound-1ccf02c850145706776fd2c79a30a33a02df50b3.zip
signals and methods cut down to size, next the indicator
Diffstat (limited to 'src/common-defs.h')
-rw-r--r--src/common-defs.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/common-defs.h b/src/common-defs.h
index 5b5c418..3e6b004 100644
--- a/src/common-defs.h
+++ b/src/common-defs.h
@@ -16,14 +16,10 @@ PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef __COMMON_DEFS_H__
+#define __COMMON_DEFS_H__
-/* constants used for signals on the dbus. This file is shared between client and server implementation */
-#define SIGNAL_SINK_INPUT_WHILE_MUTED "SinkInputWhileMuted"
-#define SIGNAL_SINK_VOLUME_UPDATE "SinkVolumeUpdate"
-#define SIGNAL_SINK_MUTE_UPDATE "SinkMuteUpdate"
-#define SIGNAL_SINK_AVAILABLE_UPDATE "SinkAvailableUpdate"
-
typedef enum {
MUTED,
ZERO_LEVEL,
@@ -67,3 +63,5 @@ typedef enum {
#define DBUSMENU_PLAYLISTS_MENUITEM_TYPE "x-canonical-sound-menu-player-playlists-type"
#define DBUSMENU_PLAYLISTS_MENUITEM_TITLE "x-canonical-sound-menu-player-playlists-title"
#define DBUSMENU_PLAYLISTS_MENUITEM_PLAYLISTS "x-canonical-sound-menu-player-playlists-playlists"
+
+#endif