~ubuntu-branches/ubuntu/maverick/xorg-server/maverick

« back to all changes in this revision

Viewing changes to include/eventconvert.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington, Timo Aaltonen, Bryce Harrington
  • Date: 2010-03-24 12:04:20 UTC
  • mfrom: (1.1.32 upstream) (0.11.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100324120420-qbk5la526uy4k8xe
Tags: 2:1.7.6-1ubuntu1
[Timo Aaltonen]
* Merge from Debian unstable.
* Drop patch 107, included in Debian.
* Drop patch 108, included upstream.
* control: Drop the udeb, we don't need it for lucid.
* control: Relax/drop some build-deps caused by the udeb.

[Bryce Harrington]
* Add 110_findglyphbyhash-fix.patch from upstream to fix a sporadic
  crash in FindGlyphByHash.
  (LP: #401045)
* Renumber patch 201_armel-drv-fallbacks.patch to 111

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
#define FP1616(integral, frac) ((integral) * (1 << 16) + (frac) * (1 << 16))
32
32
 
33
 
_X_INTERNAL int EventToCore(InternalEvent *event, xEvent *core);
34
 
_X_INTERNAL int EventToXI(InternalEvent *ev, xEvent **xi, int *count);
35
 
_X_INTERNAL int EventToXI2(InternalEvent *ev, xEvent **xi);
 
33
_X_EXPORT int EventToCore(InternalEvent *event, xEvent *core);
 
34
_X_EXPORT int EventToXI(InternalEvent *ev, xEvent **xi, int *count);
 
35
_X_EXPORT int EventToXI2(InternalEvent *ev, xEvent **xi);
36
36
_X_INTERNAL int GetCoreType(InternalEvent* ev);
37
37
_X_INTERNAL int GetXIType(InternalEvent* ev);
38
38
_X_INTERNAL int GetXI2Type(InternalEvent* ev);