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

« back to all changes in this revision

Viewing changes to commands.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
#ifndef __COMMANDS_H__
 
2
#define __COMMANDS_H__
 
3
/************************************************************************/
 
4
/* 
 
5
 * Header:      commands.h
 
6
 * Purpose:     to define commandd functions
 
7
 * Language/Compiler/O/S:   GCC 2.7.2
 
8
 * Author:      Wade Hampton
 
9
 * Date:        12/23/97
 
10
 * Revision History:
 
11
 * [from RCS]
 
12
 *
 
13
 * $Log: commands.h,v $
 
14
 * Revision 1.1  1997/12/24 15:43:46  wadeh
 
15
 * Initial revision
 
16
 *
 
17
 *
 
18
 * Notes:
 
19
 * 1) 
 
20
 *----------------------------------------------------------------------*/
 
21
/* TYPES- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
22
/* INCLUDE FILES- - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
23
/* CONSTANTS- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
24
/* LOCAL DATA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
25
/* EXTERNAL PROCEDURES- - - - - - - - - - - - - - - - - - - - - - - - - */
 
26
/* EXTERNAL DATA- - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
27
/* PROTOTYPES - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
28
void do_play(char *progname, int cdfile, int trk0, int trk1, int iVerbose);
 
29
void do_pause(char *progname, int cdfile, int iVerbose);
 
30
void do_stop(char *progname, int cdfile, int iCDNum, int iVerbose);
 
31
void do_eject(char *progname, int cdfile, int iVerbose);
 
32
void do_reset(char *progname, int cdfile, int iVerbose);
 
33
/*
 
34
 * Copyright (C) 1997, 1998 Wade Hampton
 
35
 */
 
36
/************************************************************************/
 
37
#endif
 
38
 
 
39