~n-muench/ubuntu/quantal/open-vm-tools/open-vm-tools.may2.sid-sync

« back to all changes in this revision

Viewing changes to modules/freebsd/vmhgfs/rpcout.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-30 09:48:43 UTC
  • mfrom: (1.1.5 upstream) (2.4.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090530094843-gdpza57r5iqsf124
Tags: 2009.05.22-167859-1
MergingĀ upstreamĀ versionĀ 2009.05.22-167859.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*********************************************************
2
 
 * Copyright (C) 2007 VMware, Inc. All rights reserved.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify it
5
 
 * under the terms of the GNU General Public License as published by the
6
 
 * Free Software Foundation version 2 and no later version.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but
9
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10
 
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11
 
 * for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License along
14
 
 * with this program; if not, write to the Free Software Foundation, Inc.,
15
 
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
16
 
 *
17
 
 *********************************************************/
18
 
 
19
 
/*
20
 
 * rpcout.h --
21
 
 *
22
 
 *    Remote Procedure Call between VMware and guest applications
23
 
 *    C declarations
24
 
 */
25
 
 
26
 
 
27
 
#ifndef __RPCOUT_H__
28
 
#   define __RPCOUT_H__
29
 
 
30
 
#include "vm_basic_types.h"
31
 
 
32
 
#define RPCI_PROTOCOL_NUM       0x49435052 /* 'RPCI' ;-) */
33
 
 
34
 
typedef struct RpcOut RpcOut;
35
 
 
36
 
RpcOut *RpcOut_Construct(void);
37
 
void RpcOut_Destruct(RpcOut *out);
38
 
Bool RpcOut_start(RpcOut *out);
39
 
Bool RpcOut_send(RpcOut *out, char const *request, size_t reqLen,
40
 
                 char const **reply, size_t *repLen);
41
 
Bool RpcOut_stop(RpcOut *out);
42
 
 
43
 
 
44
 
/*
45
 
 * This is the only method needed to send a message to vmware for
46
 
 * 99% of uses. I'm leaving the others defined here so people know
47
 
 * they can be exported again if the need arises. [greg]
48
 
 */
49
 
Bool RpcOut_sendOne(char **reply, size_t *repLen, char const *reqFmt, ...);
50
 
 
51
 
/* 
52
 
 * A new version of the above function that works with UTF-8 strings
53
 
 * and other data that would be corrupted by Win32's FormatMessage
54
 
 * function (which is used by RpcOut_sendOne()).
55
 
 */
56
 
 
57
 
Bool RpcOut_SendOneRaw(void *request, size_t reqLen, char **reply, size_t *repLen);
58
 
 
59
 
#endif /* __RPCOUT_H__ */