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

« back to all changes in this revision

Viewing changes to libfreerdp/chan.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
 
 
2
#ifndef __CHAN_H
 
3
#define __CHAN_H
 
4
 
 
5
#include "types_ui.h"
 
6
#include "constants_ui.h"
 
7
#include "mcs.h"
 
8
 
 
9
struct rdp_channels
 
10
{
 
11
        struct rdp_mcs * mcs;
 
12
};
 
13
typedef struct rdp_channels rdpChannels;
 
14
 
 
15
int
 
16
vchan_send(rdpChannels * chan, int mcs_id, char * data, int total_length);
 
17
void
 
18
vchan_process(rdpChannels * chan, STREAM s, int mcs_id);
 
19
rdpChannels *
 
20
vchan_new(struct rdp_mcs * mcs);
 
21
void
 
22
vchan_free(rdpChannels * chan);
 
23
 
 
24
#endif