~ubuntu-branches/ubuntu/wily/xserver-xorg-video-qxl/wily-proposed

« back to all changes in this revision

Viewing changes to src/lookup3.h

  • Committer: Bazaar Package Importer
  • Author(s): Liang Guo
  • Date: 2010-05-20 16:44:11 UTC
  • Revision ID: james.westby@ubuntu.com-20100520164411-zzgi0hpy4iac2mj2
Tags: upstream-0.0.12
ImportĀ upstreamĀ versionĀ 0.0.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __LOOKUP3_H
 
2
#define __LOOKUP3_H
 
3
 
 
4
#if defined(__GNUC__) || defined(__sun)
 
5
 
 
6
#include <stdint.h>
 
7
 
 
8
#else
 
9
 
 
10
#ifdef QXLDD
 
11
#include <windef.h>
 
12
#include "os_dep.h"
 
13
#else
 
14
#include <stddef.h>
 
15
#include <basetsd.h>
 
16
#endif
 
17
 
 
18
typedef UINT32 uint32_t;
 
19
typedef UINT16 uint16_t;
 
20
typedef UINT8 uint8_t;
 
21
 
 
22
#endif
 
23
 
 
24
uint32_t hashlittle( const void *key, size_t length, uint32_t initval);
 
25
 
 
26
#endif