~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/lib/libwpd_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-07-03 20:55:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050703205549-t8o91w9rgd7yb3qf
Tags: 0.8.2-2
* C++ ABI transition
  - rename libwpd8 / libwpd-stream8 to ...8c2 and replace/conflict (with)
    the old library. Change debian/rules, *.files and .shlibs for the new
    package names

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LIBWPD_TYPES_H
 
2
#define LIBWPD_TYPES_H
 
3
 
 
4
#ifdef _MSC_VER
 
5
typedef signed char int8_t;
 
6
typedef unsigned char uint8_t;
 
7
typedef signed short int16_t;
 
8
typedef unsigned short uint16_t;
 
9
typedef signed int int32_t;
 
10
typedef unsigned int uint32_t;
 
11
#else /* _MSC_VER */
 
12
#include <inttypes.h>
 
13
#endif /* _MSC_VER */
 
14
 
 
15
#endif /* LIBWPD_TYPES_H */