-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmalltune.dpr
More file actions
74 lines (68 loc) · 3.06 KB
/
smalltune.dpr
File metadata and controls
74 lines (68 loc) · 3.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
program smalltune;
{***************************************************************************
* | SmallTune |
* -----------------
*
* Start : Thursday, Sep 24, 2009
* Copyright : (C) 2009 Daniel Gilbert
* Mail : me@smalltune.net
* Website : http://smalltune.net
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* Version : 1.0.0
* Date : 07-2025
* Description : SmallTune is a simple but powerful audioplayer for
* Windows
***************************************************************************}
{$R 'res\resources.res' 'res\resources.rc'}
uses
dgstTranslator in 'source\dgstTranslator.pas',
dgstMain in 'source\dgstMain.pas',
dynamic_bass240 in 'source\thirdparty\dynamic_bass240.pas',
dgstDataBase in 'source\dgstDataBase.pas',
dgstFindFiles in 'source\dgstFindFiles.pas',
dgstHelper in 'source\dgstHelper.pas',
dgstMediaClass in 'source\dgstMediaClass.pas',
dgstTypeDef in 'source\dgstTypeDef.pas',
sqlite3dll in 'source\thirdparty\sqlite\sqlite3dll.pas',
SQLiteDatabase in 'source\thirdparty\sqlite\SQLiteDatabase.pas',
dgstCommCtrl in 'source\SysReplacements\dgstCommCtrl.pas',
dgstShlObj in 'source\SysReplacements\dgstShlObj.pas',
dgstSysUtils in 'source\SysReplacements\dgstSysUtils.pas',
dgstActiveX in 'source\SysReplacements\dgstActiveX.pas',
dgstInternetCP in 'source\dgstInternetCP.pas',
SpecialFolders in 'source\thirdparty\SpecialFolders.pas',
MpuAboutMsgBox in 'source\thirdparty\MpuAboutMsgBox.pas',
dgstExceptionHandling in 'source\dgstExceptionHandling.pas',
tPnvMiniGDIPlus in 'source\thirdparty\tPnvMiniGDIPlus.pas',
tPnvOpenFileDlg in 'source\thirdparty\tPnvOpenFileDlg.pas',
tPstDisplay in 'source\thirdparty\tPstDisplay.pas',
dgstLog in 'source\dgstLog.pas',
languagecodes in 'source\thirdparty\languagecodes.pas',
dgstSettings in 'source\dgstSettings.pas',
Tags in 'source\thirdparty\tags.pas',
dgstPlaylistWindow in 'source\dgstPlaylistWindow.pas',
dgstRadioBrowser in 'source\dgstRadioBrowser.pas',
dgstRadioBrowserApi in 'source\dgstRadioBrowserApi.pas',
dgstWinDns in 'source\dgstWinDns.pas',
dgstRestClient in 'source\dgstRestClient.pas',
dgstCountryCode in 'source\dgstCountryCode.pas',
dgstCSVReader in 'source\dgstCSVReader.pas';
begin
if Paramstr(1) = '-debug' then
Lg.LogMode := lmNormal;
if Paramstr(1) = '-xdebug' then
lg.LogMode := lmExtended;
//Debug
Lg.WriteLog('Initializing...', 'smalltune.dpr', ltInformation, lmNormal);
WinMain(SysInit.hInstance, System.hPrevInst, System.CmdLine, System.CmdShow);
end.