~ubuntu-branches/ubuntu/lucid/rlpr/lucid

« back to all changes in this revision

Viewing changes to src/rlpq.h

  • Committer: Bazaar Package Importer
  • Author(s): Brian Mays
  • Date: 2002-03-20 11:21:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020320112115-whl7m242ig71nu3h
Tags: upstream-2.02
ImportĀ upstreamĀ versionĀ 2.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef RLPQ_H
 
2
#define RLPQ_H
 
3
 
 
4
/*
 
5
 * Copyright (c) 1998 peter memishian (meem), meem@gnu.org
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2, or (at your option)
 
10
 * any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
15
 * General Public License for more details.
 
16
 *
 
17
 * $Id: rlpq.h,v 1.2 1998/10/22 04:29:10 meem Exp $
 
18
 */
 
19
 
 
20
#include <sys/types.h>
 
21
#include "component.h"
 
22
 
 
23
struct rlpr_rlpq
 
24
{
 
25
    int         long_output;    /* produce verbose output */
 
26
    int         mine_only;      /* list only the current user's jobs */
 
27
    int         timeout;        /* inactivity timeout */
 
28
    char       *user;           /* the user who invoked rlpq */
 
29
};
 
30
 
 
31
extern struct component comp_rlpq;
 
32
 
 
33
#endif /* RLPQ_H */