mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 02:29:19 +02:00
+ detect,default constants
This commit is contained in:
parent
06e8a03894
commit
725887d0ba
@ -77,7 +77,6 @@ interface
|
|||||||
|
|
||||||
{ ---------------------------------------------------------------------
|
{ ---------------------------------------------------------------------
|
||||||
Constants
|
Constants
|
||||||
|
|
||||||
---------------------------------------------------------------------}
|
---------------------------------------------------------------------}
|
||||||
|
|
||||||
const
|
const
|
||||||
@ -130,7 +129,6 @@ const
|
|||||||
NormWidth = 1;
|
NormWidth = 1;
|
||||||
ThickWidth = 3;
|
ThickWidth = 3;
|
||||||
|
|
||||||
const
|
|
||||||
LeftText = 0;
|
LeftText = 0;
|
||||||
CenterText = 1;
|
CenterText = 1;
|
||||||
RightText = 2;
|
RightText = 2;
|
||||||
@ -139,7 +137,6 @@ const
|
|||||||
BaseLine = 3;
|
BaseLine = 3;
|
||||||
LeadLine = 4;
|
LeadLine = 4;
|
||||||
|
|
||||||
const
|
|
||||||
{ Error codes }
|
{ Error codes }
|
||||||
grOK = 0;
|
grOK = 0;
|
||||||
grNoInitGraph = -1;
|
grNoInitGraph = -1;
|
||||||
@ -157,14 +154,18 @@ const
|
|||||||
grInvalidFont = -13;
|
grInvalidFont = -13;
|
||||||
grInvalidFontNum = -14;
|
grInvalidFontNum = -14;
|
||||||
|
|
||||||
|
{ graphic drivers }
|
||||||
|
CurrentDriver = -128;
|
||||||
|
Detect = 0;
|
||||||
|
|
||||||
|
{ graph modes }
|
||||||
|
Default = 0;
|
||||||
|
|
||||||
|
|
||||||
{ ---------------------------------------------------------------------
|
{ ---------------------------------------------------------------------
|
||||||
Types
|
Types
|
||||||
|
|
||||||
---------------------------------------------------------------------}
|
---------------------------------------------------------------------}
|
||||||
|
|
||||||
|
|
||||||
Type
|
Type
|
||||||
FillPatternType = array[1..8] of byte;
|
FillPatternType = array[1..8] of byte;
|
||||||
|
|
||||||
@ -1788,7 +1789,10 @@ end.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.9 1998-09-13 19:22:06 michael
|
Revision 1.10 1999-01-25 20:31:30 peter
|
||||||
|
+ detect,default constants
|
||||||
|
|
||||||
|
Revision 1.9 1998/09/13 19:22:06 michael
|
||||||
+ Implemented dummies for all missing functions
|
+ Implemented dummies for all missing functions
|
||||||
|
|
||||||
Revision 1.8 1998/09/11 09:24:55 michael
|
Revision 1.8 1998/09/11 09:24:55 michael
|
||||||
|
Loading…
Reference in New Issue
Block a user