mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-21 00:09:33 +02:00
* warning about SetDate added (TODO)
This commit is contained in:
parent
8a68f96c56
commit
9b8162972f
@ -277,6 +277,11 @@ end;
|
||||
procedure setftime(var f;time : longint);
|
||||
|
||||
begin
|
||||
if os_mode = osOS2 then
|
||||
begin
|
||||
{!!! Must be done differently for OS/2 !!!}
|
||||
end
|
||||
else
|
||||
asm
|
||||
{Load handle}
|
||||
movl f,%ebx
|
||||
@ -543,7 +548,11 @@ end;
|
||||
procedure setdate(year,month,day : word);
|
||||
|
||||
begin
|
||||
{DOS only! You cannot change the system date in OS/2!}
|
||||
if os_mode = osOS2 then
|
||||
begin
|
||||
{TODO: !!! Must be done differently for OS/2 !!!}
|
||||
end
|
||||
else
|
||||
asm
|
||||
movw 8(%ebp),%cx
|
||||
movb 10(%ebp),%dh
|
||||
@ -1174,7 +1183,10 @@ end;
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.25 2000-05-28 18:20:16 hajny
|
||||
Revision 1.26 2000-06-01 18:38:46 hajny
|
||||
* warning about SetDate added (TODO)
|
||||
|
||||
Revision 1.25 2000/05/28 18:20:16 hajny
|
||||
* DiskFree/DiskSize updated
|
||||
|
||||
Revision 1.24 2000/05/21 16:06:38 hajny
|
||||
|
Loading…
Reference in New Issue
Block a user