-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosddos32.inc
74 lines (52 loc) · 1.83 KB
/
osddos32.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{ $Id$
This is free software; you can redistribute it and/or modify it
under the terms of the Lesser GNU General Public License (LGPL) as
published by the Free Software Foundation; either version 2,
or (at your option) any later version.
The software is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LGPL
for more details.
You should have received a copy of the LGPL along with this
software; see the file lgpl.txt. If not, write to the
Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
Created on November, 20th 2000 by Hinrich Donner <[email protected]>
This software is part of the OpenXP project (www.openxp.de).
}
{ This file contains the OS specific functions for DOS.
All declarations here are local to the unit OSDepend. You
can use the uses-command. }
{ OS specific uses }
uses Crt;
{ local declarations }
{ local functions }
{ implementation of the interface }
procedure SysDelay(MS: Longint);
begin
Delay(MS);
end;
procedure SysBeep(Freq, Dur: Integer);
begin
Sound(Freq);
SysDelay(Dur);
NoSound;
end;
function GetTimeZone: String;
begin
Result := '';
end;
{
$Log: osddos32.inc,v $
Revision 1.6 2003/08/26 04:58:14 mk
- added automatic TimeZone dectection for Win32
Revision 1.5 2003/08/23 19:15:27 mk
- compile fixes for dos32
Revision 1.4 2002/12/04 16:57:00 dodi
- updated uses, comments and todos
Revision 1.3 2001/12/09 14:36:40 mk
- implemented SysBeep and error sounds
Revision 1.2 2001/08/04 20:19:13 mk
- added some dos compatibility functions
Revision 1.1 2000/11/20 11:58:16 hd
- Init: Empty unit for os specefic code
}