~ubuntu-branches/ubuntu/raring/freerdp/raring

« back to all changes in this revision

Viewing changes to channels/rdpdr/irp.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-06-23 21:39:09 UTC
  • Revision ID: james.westby@ubuntu.com-20100623213909-bb9pvvv03913tdv6
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- c-basic-offset: 8 -*-
 
2
   FreeRDP: A Remote Desktop Protocol client.
 
3
   Device Redirection - Interrupt Request Packet (IRP) Processing
 
4
 
 
5
   Copyright (C) Marc-Andre Moreau <marcandre.moreau@gmail.com> 2009
 
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 of the License, or
 
10
   (at your option) 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
 
15
   GNU General Public License for more details.
 
16
 
 
17
   You should have received a copy of the GNU General Public License
 
18
   along with this program; if not, write to the Free Software
 
19
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
*/
 
21
 
 
22
#ifndef __IRP_H
 
23
#define __IRP_H
 
24
 
 
25
char *
 
26
irp_output_device_io_completion(IRP* irp, int * data_size);
 
27
void
 
28
irp_process_create_request(IRP* irp, char* data, int data_size);
 
29
void
 
30
irp_process_close_request(IRP* irp, char* data, int data_size);
 
31
void
 
32
irp_process_read_request(IRP* irp, char* data, int data_size);
 
33
void
 
34
irp_process_write_request(IRP* irp, char* data, int data_size);
 
35
void
 
36
irp_process_query_volume_information_request(IRP* irp, char* data, int data_size);
 
37
void
 
38
irp_process_set_volume_information_request(IRP* irp, char* data, int data_size);
 
39
void
 
40
irp_process_query_information_request(IRP* irp, char* data, int data_size);
 
41
void
 
42
irp_process_set_information_request(IRP* irp, char* data, int data_size);
 
43
void
 
44
irp_process_directory_control_request(IRP* irp, char* data, int data_size);
 
45
void
 
46
irp_process_device_control_request(IRP* irp, char* data, int data_size);
 
47
void
 
48
irp_process_file_lock_control_request(IRP* irp, char* data, int data_size);
 
49
void
 
50
irp_process_query_directory_request(IRP* irp, char* data, int data_size);
 
51
void
 
52
irp_process_notify_change_directory_request(IRP* irp, char* data, int data_size);
 
53
 
 
54
#endif // __IRP_H
 
55