~ubuntu-branches/ubuntu/utopic/cdtool/utopic

« back to all changes in this revision

Viewing changes to main.h

  • Committer: Bazaar Package Importer
  • Author(s): Gergely Nagy
  • Date: 2002-01-22 14:08:28 UTC
  • Revision ID: james.westby@ubuntu.com-20020122140828-l9ztstm6m6anm34c
Tags: upstream-2.1.5
ImportĀ upstreamĀ versionĀ 2.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* main.h */
 
2
 
 
3
/* commands for skiping in playback mode */
 
4
#define SKIPBACK        -1
 
5
#define SKIPFORWARD     -2
 
6
#define SKIPSTART       -3
 
7
 
 
8
/* commands to the do_info command */
 
9
#define I_TRACK         0x01
 
10
#define I_AUDIOSTATUS   0x02
 
11
#define I_DISP_REL      0x03
 
12
#define I_DISP_ABS      0x04
 
13
#define I_DISP_ALL      0x05
 
14
 
 
15
/* commands for do_dir:
 
16
 *  do_dir (program_name, cd_file, p_format, usedb, cd_device); */
 
17
#define P_QUICK         0x01
 
18
#define P_LONG          0x02
 
19
#define P_TEMPL         0x03
 
20
#define P_RAW           0x04
 
21
 
 
22
 
 
23