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

« back to all changes in this revision

Viewing changes to lib/include/cpNameInt.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) 1998 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
 
/*
20
 
 * cpNameInt.h --
21
 
 *
22
 
 *    Cross-platform name format used by hgfs.
23
 
 *
24
 
 */
25
 
 
26
 
 
27
 
#ifndef __CP_NAME_INT_H__
28
 
#define __CP_NAME_INT_H__
29
 
 
30
 
 
31
 
#include "vm_basic_types.h"
32
 
 
33
 
/*
34
 
 * Used by CPName_ConvertFrom
35
 
 */
36
 
int
37
 
CPNameConvertFrom(char const **bufIn, // IN/OUT: Input to convert
38
 
                  size_t *inSize,     // IN/OUT: Size of input
39
 
                  size_t *outSize,    // IN/OUT: Size of output buffer
40
 
                  char **bufOut,      // IN/OUT: Output buffer
41
 
                  char pathSep);      // IN: Path separator character
42
 
 
43
 
 
44
 
/*
45
 
 * Common code for CPName_ConvertTo
46
 
 */
47
 
int
48
 
CPNameConvertTo(char const *nameIn, // IN:  Buf to convert
49
 
                size_t bufOutSize,  // IN:  Size of the output buffer
50
 
                char *bufOut,       // OUT: Output buffer
51
 
                char pathSep,       // IN:  path separator to use
52
 
                char *ignores);     // IN:  chars to not transfer to output
53
 
 
54
 
#endif /* __CP_NAME_INT_H__ */