-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.hsp
More file actions
50 lines (41 loc) · 934 Bytes
/
Program.hsp
File metadata and controls
50 lines (41 loc) · 934 Bytes
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
#define global ProductName "SoupDevelop"
#define global ProductVersion "1.00"
#packopt name ProductName
#packopt hide 1
#epack "default.ini"
#epack "Icons\\newproj"
#epack "Icons\\additem"
#epack "Icons\\openproj"
#epack "Icons\\save"
#epack "Icons\\saveall"
#epack "Icons\\undo"
#epack "Icons\\redo"
#epack "Icons\\cut"
#epack "Icons\\copy"
#epack "Icons\\paste"
#epack "Icons\\delete"
#epack "Icons\\start"
#epack "treeview.gif"
#cmpopt varinit 1
#ifndef _debug
if (exist("hspcmp.dll") == -1) {
dialog "hspcmp.dll が見つかりません。", 1, ProductName
end
}
if (exist("hspda.dll") == -1) {
dialog "hspda.dll が見つかりません。", 1, ProductName
end
}
if (exist("Footy2.dll") == -1) {
dialog "Footy2.dll が見つかりません。", 1, ProductName
end
}
if (exist("hscallbk.dll") == -1) {
dialog "hscallbk.dll が見つかりません。", 1, ProductName
end
}
#endif
#include "MainForm.hsp"
*Main
MainFormCreate
stop