~ubuntu-branches/ubuntu/hardy/sauerbraten/hardy-backports

« back to all changes in this revision

Viewing changes to enet/include/enet/types.h

  • Committer: Bazaar Package Importer
  • Author(s): Bruno "Fuddl" Kleinert
  • Date: 2007-01-09 18:19:30 UTC
  • Revision ID: james.westby@ubuntu.com-20070109181930-zy2ulzq3ukfjhrix
Tags: upstream-0.0.20061204.dfsg
ImportĀ upstreamĀ versionĀ 0.0.20061204.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** 
 
2
 @file  types.h
 
3
 @brief type definitions for ENet
 
4
*/
 
5
#ifndef __ENET_TYPES_H__
 
6
#define __ENET_TYPES_H__
 
7
 
 
8
typedef unsigned char enet_uint8;       /**< unsigned 8-bit type  */
 
9
typedef unsigned short enet_uint16;     /**< unsigned 16-bit type */
 
10
typedef unsigned int enet_uint32;      /**< unsigned 32-bit type */
 
11
 
 
12
#endif /* __ENET_TYPES_H__ */
 
13