~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to lib/include/dynxdr.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2008-08-15 21:21:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080815212140-05fhxj8wroosysmj
Tags: 2008.08.08-109361-1ubuntu1
* Merge from Debian unstable (LP: #258393), remaining Ubuntu change:
  - add ubuntu_toolchain_FTBFS.dpatch patch, fix FTBFS
* Update ubuntu_toolchain_FTBFS.dpatch patch for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2008 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 Lesser General Public License as published
 
6
 * by the Free Software Foundation version 2.1 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 Lesser GNU General Public
 
11
 * License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along 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
#ifndef _DYNXDR_H_
 
20
#define _DYNXDR_H_
 
21
 
 
22
/*
 
23
 * dynxdr.h --
 
24
 *
 
25
 *    Functions for creating and destroying an XDR stream that is backed
 
26
 *    by a dynamic memory buffer. Uses DynBuf, so requires code using it to
 
27
 *    link lib/misc.
 
28
 *
 
29
 *    This stream only does encoding. For decoding, we generally have data
 
30
 *    already available in the form of a pre-allocated buffer, in which
 
31
 *    case we can use the xdrmem_create() function.
 
32
 *
 
33
 *    Note: xdr_destroy() is a no-op for this stream. Use DynXdr_Destroy()
 
34
 *    instead. Also, XDR_SETPOS and XDR_INLINE are not supported.
 
35
 */
 
36
 
 
37
#include <rpc/types.h>
 
38
#include <rpc/xdr.h>
 
39
#include "vm_basic_types.h"
 
40
 
 
41
XDR *DynXdr_Create(XDR *in);
 
42
Bool DynXdr_AppendRaw(XDR *xdrs, const void *buf, size_t len);
 
43
void *DynXdr_AllocGet(XDR *xdrs);
 
44
void *DynXdr_Get(XDR *xdrs);
 
45
void DynXdr_Destroy(XDR *xdrs, Bool release);
 
46
 
 
47
#endif /* _DYNXDR_H_ */
 
48