~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/packages/extra/gtk2/gtk2x11/include/gxid_proto.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{%MainUnit ../gdk2x.pas}
 
2
 
 
3
{$IFDEF read_interface_rest}
 
4
 
 
5
const
 
6
   GXID_CLAIM_DEVICE = 1;
 
7
   GXID_RELEASE_DEVICE = 2;
 
8
   GXID_RETURN_OK = 0;
 
9
   GXID_RETURN_ERROR = -(1);
 
10
 
 
11
type
 
12
   PGxidMessage = ^TGxidMessage;
 
13
 
 
14
   PGxidU32 = ^TGxidU32;
 
15
   TGxidU32 = dword;
 
16
 
 
17
   PGxidI32 = ^TGxidI32;
 
18
   TGxidI32 = longint;
 
19
   TGxidClaimDevice = record
 
20
        _type : TGxidU32;
 
21
        length : TGxidU32;
 
22
        device : TGxidU32;
 
23
        window : TGxidU32;
 
24
        exclusive : TGxidU32;
 
25
     end;
 
26
 
 
27
   TGxidReleaseDevice = record
 
28
        _type : TGxidU32;
 
29
        length : TGxidU32;
 
30
        device : TGxidU32;
 
31
        window : TGxidU32;
 
32
     end;
 
33
 
 
34
   TGxidMessageAny = record
 
35
        _type : TGxidU32;
 
36
        length : TGxidU32;
 
37
     end;
 
38
 
 
39
   TGxidMessage = record
 
40
       case longint of
 
41
          0 : ( any : TGxidMessageAny );
 
42
          1 : ( claim : TGxidClaimDevice );
 
43
          2 : ( release : TGxidReleaseDevice );
 
44
       end;
 
45
 
 
46
{$ENDIF read_interface_rest}
 
47
 
 
48
//------------------------------------------------------------------------------
 
49
 
 
50
{$IFDEF read_implementation}
 
51
{$ENDIF read_implementation}
 
52