[go: up one dir, main page]

Menu

[b88bd8]: / osdbsd.inc  Maximize  Restore  History

Download this file

62 lines (43 with data), 1.5 kB

 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
{ $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 <hd@tiro.de>
This software is part of the OpenXP project (www.openxp.de).
}
{ This file contains the OS specific functions for BSD.
All declarations here are local to the unit OSDepend. You
can use the uses-command. }
{ OS specific uses }
{ local declarations }
{ local functions }
{ implementation of the interface }
procedure SysDelay(MS: Longint);
begin
//todo
end;
procedure SysBeep(Freq, Dur: Integer);
begin
//todo
end;
function GetTimeZone: String;
begin
Result := '';
end;
{
$Log: osdbsd.inc,v $
Revision 1.3 2003/08/26 04:58:14 mk
- added automatic TimeZone dectection for Win32
Revision 1.2 2002/12/04 16:57:00 dodi
- updated uses, comments and todos
Revision 1.1 2000/11/20 11:58:16 hd
- Init: Empty unit for os specific code
}