mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 19:11:03 +02:00
+ Removed defaultmode field from driver
This commit is contained in:
parent
42002892ab
commit
e68b5a2ae4
@ -38,7 +38,6 @@ type
|
|||||||
GetCursorType : function : Word;
|
GetCursorType : function : Word;
|
||||||
SetCursorType : procedure (NewType: Word);
|
SetCursorType : procedure (NewType: Word);
|
||||||
GetCapabilities : Function : Word;
|
GetCapabilities : Function : Word;
|
||||||
DefaultVideoMode : TVideoMode;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
const
|
const
|
||||||
@ -165,7 +164,10 @@ const
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.5 2001-10-06 22:28:24 michael
|
Revision 1.6 2001-10-13 12:59:46 michael
|
||||||
|
+ Removed defaultmode field from driver
|
||||||
|
|
||||||
|
Revision 1.5 2001/10/06 22:28:24 michael
|
||||||
+ Merged video mode selection/setting system
|
+ Merged video mode selection/setting system
|
||||||
|
|
||||||
Revision 1.4 2001/10/04 20:51:56 michael
|
Revision 1.4 2001/10/04 20:51:56 michael
|
||||||
|
@ -803,12 +803,6 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
Const
|
Const
|
||||||
SysVideoMode : TVideoMode = (
|
|
||||||
Col : 80;
|
|
||||||
Row : 25;
|
|
||||||
Color : True;
|
|
||||||
);
|
|
||||||
|
|
||||||
SysVideoDriver : TVideoDriver = (
|
SysVideoDriver : TVideoDriver = (
|
||||||
InitDriver : @SysInitVideo;
|
InitDriver : @SysInitVideo;
|
||||||
DoneDriver : @SysDoneVideo;
|
DoneDriver : @SysDoneVideo;
|
||||||
@ -821,7 +815,6 @@ Const
|
|||||||
GetCursorType : @SysGetCursorType;
|
GetCursorType : @SysGetCursorType;
|
||||||
SetCursorType : @SysSetCursorType;
|
SetCursorType : @SysSetCursorType;
|
||||||
GetCapabilities : @SysGetCapabilities;
|
GetCapabilities : @SysGetCapabilities;
|
||||||
DefaultVideoMode : (Col : 80; Row : 25;Color : True);
|
|
||||||
);
|
);
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
@ -829,7 +822,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.9 2001-10-06 22:28:25 michael
|
Revision 1.10 2001-10-13 13:00:31 michael
|
||||||
|
+ Removed defaultmode field from driver
|
||||||
|
|
||||||
|
Revision 1.9 2001/10/06 22:28:25 michael
|
||||||
+ Merged video mode selection/setting system
|
+ Merged video mode selection/setting system
|
||||||
|
|
||||||
Revision 1.8 2001/09/21 19:50:19 michael
|
Revision 1.8 2001/09/21 19:50:19 michael
|
||||||
|
Loading…
Reference in New Issue
Block a user