~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201207201942

« back to all changes in this revision

Viewing changes to modules/solaris/vmhgfs/backdoor.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-03-20 10:19:00 UTC
  • mfrom: (1.1.4 upstream) (2.4.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090320101900-1o604camiubq2de8
Tags: 2009.03.18-154848-2
Correcting patch system depends (Closes: #520493).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 1999 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * The contents of this file are subject to the terms of the Common
 
5
 * Development and Distribution License (the "License") version 1.0
 
6
 * and no later version.  You may not use this file except in
 
7
 * compliance with the License.
 
8
 *
 
9
 * You can obtain a copy of the License at
 
10
 *         http://www.opensource.org/licenses/cddl1.php
 
11
 *
 
12
 * See the License for the specific language governing permissions
 
13
 * and limitations under the License.
 
14
 *
 
15
 *********************************************************/
 
16
 
 
17
/*
 
18
 * backdoor.h --
 
19
 *
 
20
 *    First layer of the internal communication channel between guest
 
21
 *    applications and vmware
 
22
 */
 
23
 
 
24
#ifndef _BACKDOOR_H_
 
25
#define _BACKDOOR_H_
 
26
 
 
27
#include "vm_basic_types.h"
 
28
#include "vm_assert.h"
 
29
 
 
30
#include "backdoor_types.h"
 
31
 
 
32
void
 
33
Backdoor(Backdoor_proto *bp); // IN/OUT
 
34
 
 
35
void 
 
36
Backdoor_InOut(Backdoor_proto *bp); // IN/OUT
 
37
 
 
38
void
 
39
Backdoor_HbOut(Backdoor_proto_hb *bp); // IN/OUT
 
40
 
 
41
void
 
42
Backdoor_HbIn(Backdoor_proto_hb *bp); // IN/OUT
 
43
 
 
44
#endif /* _BACKDOOR_H_ */