~ubuntu-branches/ubuntu/gutsy/rdesktop/gutsy-updates

« back to all changes in this revision

Viewing changes to parallel.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2006-10-17 21:31:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20061017213116-tx5px198eujcbs10
Tags: 1.5.0-1
* New upstream release (closes: #393520), accept Victor's change
  (closes: #343946).
* New maintainer with ACK from Tomas.
* Tune packaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- c-basic-offset: 8 -*-
 
2
   rdesktop: A Remote Desktop Protocol client.
 
3
   Copyright (C) Matthew Chapman 1999-2005
 
4
   
 
5
   This program is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by
 
7
   the Free Software Foundation; either version 2 of the License, or
 
8
   (at your option) any later version.
 
9
 
 
10
   This program is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
   GNU General Public License for more details.
 
14
   
 
15
   You should have received a copy of the GNU General Public License
 
16
   along with this program; if not, write to the Free Software
 
17
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
*/
1
19
#define MAX_PARALLEL_DEVICES            1
2
20
 
3
21
#define FILE_DEVICE_PARALLEL            0x22
14
32
#include <linux/lp.h>
15
33
#endif
16
34
 
17
 
extern int errno;
18
 
 
19
35
extern RDPDR_DEVICE g_rdpdr_device[];
20
36
 
21
37