~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to iris/libidn/qint.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// simple stdint.h-style replacement without any conflicts
 
2
 
 
3
#ifndef QINT_H
 
4
#define QINT_H
 
5
 
 
6
typedef unsigned char           my_uint8_t;
 
7
typedef unsigned short int      my_uint16_t;
 
8
typedef unsigned int            my_uint32_t;
 
9
 
 
10
typedef char                    my_int8_t;
 
11
typedef short int               my_int16_t;
 
12
typedef int                     my_int32_t;
 
13
 
 
14
#endif
 
15