~ubuntu-branches/ubuntu/wily/pianobar/wily-proposed

« back to all changes in this revision

Viewing changes to src/main.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Faraone
  • Date: 2011-07-09 10:03:03 UTC
  • mfrom: (1.3.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110709100303-m5heshhcrbrv3w3n
Tags: 2011.07.09-1
* New upstream version. 
  - XMLRPC api version bump (v31) (closes: #633345, LP: #807860)
* Update debian/watch for new location.
* Update symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
Copyright (c) 2008-2010
 
2
Copyright (c) 2008-2011
3
3
        Lars-Dominik Braun <lars@6xq.net>
4
4
 
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
27
27
#include <piano.h>
28
28
#include <waitress.h>
29
29
 
30
 
#include <sys/select.h>
31
 
 
32
30
#include "player.h"
33
31
#include "settings.h"
 
32
#include "ui_readline.h"
34
33
 
35
34
typedef struct {
36
35
        PianoHandle_t ph;
42
41
        PianoSong_t *songHistory;
43
42
        PianoStation_t *curStation;
44
43
        char doQuit;
45
 
        fd_set readSet;
46
 
        int maxFd;
47
 
        int selectFds[2];
48
 
        FILE *ctlFd;
 
44
        BarReadlineFds_t input;
49
45
} BarApp_t;
50
46
 
51
47
#endif /* _MAIN_H */