-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuSound.pas
More file actions
executable file
·60 lines (52 loc) · 1.87 KB
/
Copy pathuSound.pas
File metadata and controls
executable file
·60 lines (52 loc) · 1.87 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
//
// Copyright 2016 Gabriel P. Silva and José Antonio S. Borges
//
// This file is part of simulator SimuS.
//
// SimuS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// SimuS 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 the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with SimuS. If not, see <http://www.gnu.org/licenses/>.
//
// Este arquivo é parte do programa simulador SimuS.
//
// SimuS é um software livre; você pode redistribuí-lo e/ou
// modificá-lo dentro dos termos da Licença Pública Geral GNU como
// publicada pela Fundação do Software Livre (FSF); na versão 3 da
// Licença, ou (na sua opinião) qualquer versão.
//
// Este programa é distribuído na esperança de que possa ser útil,
// mas SEM NENHUMA GARANTIA; sem uma garantia implícita de ADEQUAÇÃO
// a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a
// Licença Pública Geral GNU para maiores detalhes.
//
// Você deve ter recebido uma cópia da Licença Pública Geral GNU junto
// com este programa, se não, veja em <http://www.gnu.org/licenses/>.
//
unit uSound;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
interface
uses
{$IFDef MSWINDOWS}
Windows,
{$ENDIF}
{$IFnDEF MSWINDOWS}
Unix, BaseUnix,
{$ENDIF}
LCLIntf, LCLType, Sysutils;
procedure SoundPlay(Hz: Word; durMS: integer);
implementation
procedure SoundPlay(Hz: Word; durMS: integer);
begin
end;
end.