~ubuntu-branches/ubuntu/utopic/lebiniou/utopic

« back to all changes in this revision

Viewing changes to src/sequence.h

  • Committer: Package Import Robot
  • Author(s): Olivier Girondel
  • Date: 2011-10-22 21:04:28 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20111022210428-98wk8rbx1mj3wuzo
Tags: 3.13-1
* New upstream release 3.13.
* Put all library flags in LIBS instead of LDFLAGS. (Closes: #647100)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
 
26
26
typedef struct Sequence_s {
27
 
  u_long   id;              /* sequence id */
 
27
  uint32_t id;              /* sequence id */
28
28
  u_char   changed;
29
29
  u_char   broken;          /* sequence is broken (eg, no pictures available) */
30
30
  char     *name;
33
33
  Plugin_t *lens;           /* lens, NULL if none */
34
34
 
35
35
  /* TODO ShufflerMode_e */
36
 
  u_char auto_colormaps;    /* Auto-change colormaps at random interval */
37
 
  long   cmap_id;           /* colormap to use, -1 if default */
 
36
  u_char   auto_colormaps;    /* Auto-change colormaps at random interval */
 
37
  uint32_t cmap_id;           /* colormap to use, -1 if default */
38
38
 
39
39
  /* TODO ShufflerMode_e */
40
 
  u_char auto_pictures;     /* Auto-change pictures  at random interval */
41
 
  long   picture_id;        /* picture to use, -1 if default */
 
40
  u_char   auto_pictures;     /* Auto-change pictures  at random interval */
 
41
  uint32_t picture_id;        /* picture to use, -1 if default */
42
42
} Sequence_t;
43
43
 
44
44
 
50
50
 * Alt+: RANDOM
51
51
 */
52
52
 
53
 
Sequence_t *Sequence_new(const u_long);
 
53
Sequence_t *Sequence_new(const uint32_t);
54
54
void Sequence_delete(Sequence_t *);
55
55
 
56
56
void Sequence_display(const Sequence_t *);
70
70
 
71
71
gint Sequence_sort_func(gconstpointer, gconstpointer);
72
72
 
 
73
const uint8_t Sequence_size(const Sequence_t *);
 
74
 
73
75
#endif /* __BINIOU_SEQUENCE_H */