~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/hermes/src/hermconf.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    Free Pascal port of the Hermes C library.
 
3
    Copyright (C) 2001-2003  Nikolay Nikolov (nickysn@users.sourceforge.net)
 
4
    Original C version by Christian Nentwich (c.nentwich@cs.ucl.ac.uk)
 
5
 
 
6
    This library is free software; you can redistribute it and/or
 
7
    modify it under the terms of the GNU Lesser General Public
 
8
    License as published by the Free Software Foundation; either
 
9
    version 2.1 of the License, or (at your option) any later version.
 
10
 
 
11
    This library is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
    Lesser General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU Lesser General Public
 
17
    License along with this library; if not, write to the Free Software
 
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
}
 
20
 
 
21
 
 
22
Const
 
23
  HERMES_INITIAL = 8; { Initial size and growth of dynamic }
 
24
  HERMES_GROWTH = 4; { array structures }
 
25
 
 
26
  A_32 = 3;                   { oh yes, hardcode it... tsk tsk tsk }
 
27
  R_32 = 2;                   { Position of R,G,B in a 32 bit dword }
 
28
  G_32 = 1;
 
29
  B_32 = 0;
 
30
  R_24 = 2;                   { Position of R,G,B in a 24 bit pixel }
 
31
  G_24 = 1;
 
32
  B_24 = 0;
 
33
{  #define DWORD_BYTE0(s) s         /* Shift values to get to bytes in dwords */
 
34
  #define DWORD_BYTE1(s) ((s)<<8)  /* Check out the bracket paranoia to */   
 
35
  #define DWORD_BYTE2(s) ((s)<<16) /* prevent bugs :)) */     
 
36
  #define DWORD_BYTE3(s) ((s)<<24)       
 
37
  #define DWORD_SHORT0(s) s
 
38
  #define DWORD_SHORT1(s) ((s)<<16)
 
39
  #define DWORD_SHORT0(s) s
 
40
  #define DWORD_SHORT1(s) ((s)<<16)}