rake-delphi 0.0.9 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/2 +336 -0
  2. data/Gemfile +2 -1
  3. data/lib/rake/common/logger.rb +1 -1
  4. data/lib/rake/delphi/androidmanifest.rb +57 -0
  5. data/lib/rake/delphi/dcc32.rb +58 -59
  6. data/lib/rake/delphi/dcc32tool.rb +51 -0
  7. data/lib/rake/delphi/dccaarmtool.rb +29 -0
  8. data/lib/rake/delphi/envvariables.rb +19 -22
  9. data/lib/rake/delphi/paclient.rb +251 -0
  10. data/lib/rake/delphi/paclienttool.rb +20 -0
  11. data/lib/rake/delphi/project.rb +4 -2
  12. data/lib/rake/delphi/projectinfo.rb +73 -1
  13. data/lib/rake/delphi/resources.rb +1 -1
  14. data/lib/rake/delphi/tool.rb +8 -1
  15. data/lib/rake/delphi/version.rb +1 -1
  16. data/lib/rake/helpers/gemversion.rb +11 -0
  17. data/lib/rake/helpers/raketask.rb +16 -0
  18. data/lib/rake/helpers/string.rb +13 -0
  19. data/rake-delphi-cygwin.env.cmd +11 -0
  20. data/rake-delphi-cygwin.env.sh +12 -0
  21. data/rake-delphi.gemspec +4 -1
  22. data/test/helpers/consts.rb +6 -1
  23. data/test/helpers/verinfo.rb +22 -3
  24. data/test/resources/testproject-android/AndroidManifest.erb +35 -0
  25. data/test/resources/testproject-android/AndroidManifest.xml +35 -0
  26. data/test/resources/testproject-android/Rakefile.rb +55 -0
  27. data/test/resources/testproject-android/TestProject.cfg +4 -0
  28. data/test/resources/testproject-android/TestProject.dpr +15 -0
  29. data/test/resources/testproject-android/TestProject.rc +62 -0
  30. data/test/resources/testproject-android/TestProject.res +0 -0
  31. data/test/resources/testproject-android/TestProject.xe5.dproj +373 -0
  32. data/test/resources/testproject-android/fmTest.fmx +26 -0
  33. data/test/resources/testproject-android/fmTest.pas +31 -0
  34. data/test/resources/testproject-android/local.resources.txt +1 -0
  35. data/test/resources/testproject-android/release.dcc.cfg +1 -0
  36. data/test/resources/testproject-android/resources.rc +1 -0
  37. data/test/resources/testproject-android/resources.res +0 -0
  38. data/test/resources/testproject/Rakefile.rb +1 -1
  39. data/test/test-delphi-android.rb +192 -0
  40. data/test/test-delphi.rb +3 -11
  41. data/test/test-envvariables.rb +7 -0
  42. data/test/test-gemversion.rb +11 -0
  43. data/test/test-projectinfo-android.rb +81 -0
  44. data/test/test-projectinfo.rb +0 -11
  45. data/test/test-string.rb +41 -0
  46. metadata +92 -6
  47. data/test/resources/testproject/testproject.cfg.1 +0 -8
  48. data/test/resources/testproject/testproject.drc +0 -210
@@ -0,0 +1,41 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rake'
4
+ require 'test/unit'
5
+ require 'rake/helpers/unittest'
6
+ require 'rake/helpers/string'
7
+
8
+ class TestString < Test::Unit::TestCase
9
+ def test_prepend
10
+ assert_equal('prefix_a', 'a'.prepend('prefix_'))
11
+ end
12
+
13
+ def test_starts_with
14
+ assert 'android32'.starts_with?('android')
15
+ assert 'android'.starts_with?('android')
16
+ assert ! 'win'.starts_with?('android')
17
+ end
18
+
19
+ def test_double_delimilters
20
+ s = 'a\\b\\c'
21
+ assert_equal 'a\\\\b\\\\c', 'a\\b\\c'.double_delimiters
22
+ # test s was not changed
23
+ assert_equal 'a\\b\\c', s
24
+ assert_equal 'a/b/c', 'a/b/c'.double_delimiters
25
+ assert_equal 'a/b\\\\c', 'a/b\\c'.double_delimiters
26
+ end
27
+
28
+ def test_double_delimilters!
29
+ s = 'a\\b\\c'
30
+ s.double_delimiters!
31
+ assert_equal 'a\\\\b\\\\c', s
32
+
33
+ s = 'a/b/c'
34
+ s.double_delimiters!
35
+ assert_equal 'a/b/c', s
36
+
37
+ s = 'a/b\\c'
38
+ s.double_delimiters!
39
+ assert_equal 'a/b\\\\c', s
40
+ end
41
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-delphi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.11
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-11 00:00:00.000000000 Z
12
+ date: 2014-07-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -43,6 +43,54 @@ dependencies:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
45
  version: 10.0.4
46
+ - !ruby/object:Gem::Dependency
47
+ name: xml-simple
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rubyzip
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 0.9.9
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 0.9.9
78
+ - !ruby/object:Gem::Dependency
79
+ name: apktools
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
46
94
  description: Tasks for building Delphi projects
47
95
  email:
48
96
  - Alex.Crezoff@gmail.com
@@ -51,9 +99,12 @@ extensions: []
51
99
  extra_rdoc_files: []
52
100
  files:
53
101
  - '1'
102
+ - '2'
54
103
  - Gemfile
55
104
  - LICENSE.txt
56
105
  - Messages.txt
106
+ - rake-delphi-cygwin.env.cmd
107
+ - rake-delphi-cygwin.env.sh
57
108
  - rake-delphi.gemspec
58
109
  - Rakefile.rb
59
110
  - README.md
@@ -69,9 +120,14 @@ files:
69
120
  - lib/rake/common/logger.rb
70
121
  - lib/rake/common/sendmailtask.rb
71
122
  - lib/rake/common/ziptask.rb
123
+ - lib/rake/delphi/androidmanifest.rb
72
124
  - lib/rake/delphi/dcc32.rb
125
+ - lib/rake/delphi/dcc32tool.rb
126
+ - lib/rake/delphi/dccaarmtool.rb
73
127
  - lib/rake/delphi/envvariables.rb
74
128
  - lib/rake/delphi/liblist.rb
129
+ - lib/rake/delphi/paclient.rb
130
+ - lib/rake/delphi/paclienttool.rb
75
131
  - lib/rake/delphi/project.rb
76
132
  - lib/rake/delphi/projectinfo.rb
77
133
  - lib/rake/delphi/rc.rb
@@ -89,6 +145,7 @@ files:
89
145
  - lib/rake/helpers/string.rb
90
146
  - lib/rake/helpers/unittest.rb
91
147
  - lib/rake/templates/project.erb
148
+ - test/test-delphi-android.rb
92
149
  - test/test-delphi.rb
93
150
  - test/test-echo.rb
94
151
  - test/test-envvariables.rb
@@ -97,7 +154,9 @@ files:
97
154
  - test/test-hashes.rb
98
155
  - test/test-ini.rb
99
156
  - test/test-libstask.rb
157
+ - test/test-projectinfo-android.rb
100
158
  - test/test-projectinfo.rb
159
+ - test/test-string.rb
101
160
  - test/test-zip.rb
102
161
  - test/helpers/consts.rb
103
162
  - test/helpers/verinfo.rb
@@ -119,13 +178,25 @@ files:
119
178
  - test/resources/testproject/testproject.2007.dproj
120
179
  - test/resources/testproject/testproject.2010.dproj
121
180
  - test/resources/testproject/testproject.cfg
122
- - test/resources/testproject/testproject.cfg.1
123
181
  - test/resources/testproject/testproject.dpr
124
- - test/resources/testproject/testproject.drc
125
182
  - test/resources/testproject/testproject.ico
126
183
  - test/resources/testproject/testproject.rc
127
184
  - test/resources/testproject/testproject.res
128
185
  - test/resources/testproject/testproject.xe5.dproj
186
+ - test/resources/testproject-android/AndroidManifest.erb
187
+ - test/resources/testproject-android/AndroidManifest.xml
188
+ - test/resources/testproject-android/fmTest.fmx
189
+ - test/resources/testproject-android/fmTest.pas
190
+ - test/resources/testproject-android/local.resources.txt
191
+ - test/resources/testproject-android/Rakefile.rb
192
+ - test/resources/testproject-android/release.dcc.cfg
193
+ - test/resources/testproject-android/resources.rc
194
+ - test/resources/testproject-android/resources.res
195
+ - test/resources/testproject-android/TestProject.cfg
196
+ - test/resources/testproject-android/TestProject.dpr
197
+ - test/resources/testproject-android/TestProject.rc
198
+ - test/resources/testproject-android/TestProject.res
199
+ - test/resources/testproject-android/TestProject.xe5.dproj
129
200
  - test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
130
201
  - test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
131
202
  - test/resources/libstask/lib/level-1/level-2-2/.gitkeep
@@ -155,6 +226,7 @@ signing_key:
155
226
  specification_version: 3
156
227
  summary: Tasks for building Delphi projects
157
228
  test_files:
229
+ - test/test-delphi-android.rb
158
230
  - test/test-delphi.rb
159
231
  - test/test-echo.rb
160
232
  - test/test-envvariables.rb
@@ -163,7 +235,9 @@ test_files:
163
235
  - test/test-hashes.rb
164
236
  - test/test-ini.rb
165
237
  - test/test-libstask.rb
238
+ - test/test-projectinfo-android.rb
166
239
  - test/test-projectinfo.rb
240
+ - test/test-string.rb
167
241
  - test/test-zip.rb
168
242
  - test/helpers/consts.rb
169
243
  - test/helpers/verinfo.rb
@@ -185,13 +259,25 @@ test_files:
185
259
  - test/resources/testproject/testproject.2007.dproj
186
260
  - test/resources/testproject/testproject.2010.dproj
187
261
  - test/resources/testproject/testproject.cfg
188
- - test/resources/testproject/testproject.cfg.1
189
262
  - test/resources/testproject/testproject.dpr
190
- - test/resources/testproject/testproject.drc
191
263
  - test/resources/testproject/testproject.ico
192
264
  - test/resources/testproject/testproject.rc
193
265
  - test/resources/testproject/testproject.res
194
266
  - test/resources/testproject/testproject.xe5.dproj
267
+ - test/resources/testproject-android/AndroidManifest.erb
268
+ - test/resources/testproject-android/AndroidManifest.xml
269
+ - test/resources/testproject-android/fmTest.fmx
270
+ - test/resources/testproject-android/fmTest.pas
271
+ - test/resources/testproject-android/local.resources.txt
272
+ - test/resources/testproject-android/Rakefile.rb
273
+ - test/resources/testproject-android/release.dcc.cfg
274
+ - test/resources/testproject-android/resources.rc
275
+ - test/resources/testproject-android/resources.res
276
+ - test/resources/testproject-android/TestProject.cfg
277
+ - test/resources/testproject-android/TestProject.dpr
278
+ - test/resources/testproject-android/TestProject.rc
279
+ - test/resources/testproject-android/TestProject.res
280
+ - test/resources/testproject-android/TestProject.xe5.dproj
195
281
  - test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
196
282
  - test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
197
283
  - test/resources/libstask/lib/level-1/level-2-2/.gitkeep
@@ -1,8 +0,0 @@
1
- -U"."
2
- -I"."
3
- -R"."
4
- -O"."
5
- -U"./lib/AnyLib"
6
- -I"./lib/AnyLib"
7
- -R"./lib/AnyLib"
8
- -O"./lib/AnyLib"
@@ -1,210 +0,0 @@
1
- /* VER180
2
- Generated by the Borland Delphi Pascal Compiler
3
- because -GD or --drc was supplied to the compiler.
4
-
5
- This file contains compiler-generated resources that
6
- were bound to the executable.
7
- If this file is empty, then no compiler-generated
8
- resources were bound to the produced executable.
9
- */
10
-
11
- #define RTLConsts_SSeekNotImplemented 65424
12
- #define RTLConsts_SWriteError 65425
13
- #define SysConst_SShortDayNameThu 65440
14
- #define SysConst_SShortDayNameFri 65441
15
- #define SysConst_SShortDayNameSat 65442
16
- #define SysConst_SLongDayNameSun 65443
17
- #define SysConst_SLongDayNameMon 65444
18
- #define SysConst_SLongDayNameTue 65445
19
- #define SysConst_SLongDayNameWed 65446
20
- #define SysConst_SLongDayNameThu 65447
21
- #define SysConst_SLongDayNameFri 65448
22
- #define SysConst_SLongDayNameSat 65449
23
- #define RTLConsts_SAssignError 65450
24
- #define RTLConsts_SCantWriteResourceStreamError 65451
25
- #define RTLConsts_SListCapacityError 65452
26
- #define RTLConsts_SListCountError 65453
27
- #define RTLConsts_SListIndexError 65454
28
- #define RTLConsts_SResNotFound 65455
29
- #define SysConst_SLongMonthNameJan 65456
30
- #define SysConst_SLongMonthNameFeb 65457
31
- #define SysConst_SLongMonthNameMar 65458
32
- #define SysConst_SLongMonthNameApr 65459
33
- #define SysConst_SLongMonthNameMay 65460
34
- #define SysConst_SLongMonthNameJun 65461
35
- #define SysConst_SLongMonthNameJul 65462
36
- #define SysConst_SLongMonthNameAug 65463
37
- #define SysConst_SLongMonthNameSep 65464
38
- #define SysConst_SLongMonthNameOct 65465
39
- #define SysConst_SLongMonthNameNov 65466
40
- #define SysConst_SLongMonthNameDec 65467
41
- #define SysConst_SShortDayNameSun 65468
42
- #define SysConst_SShortDayNameMon 65469
43
- #define SysConst_SShortDayNameTue 65470
44
- #define SysConst_SShortDayNameWed 65471
45
- #define SysConst_SAbstractError 65472
46
- #define SysConst_SModuleAccessViolation 65473
47
- #define SysConst_SOSError 65474
48
- #define SysConst_SUnkOSError 65475
49
- #define SysConst_SShortMonthNameJan 65476
50
- #define SysConst_SShortMonthNameFeb 65477
51
- #define SysConst_SShortMonthNameMar 65478
52
- #define SysConst_SShortMonthNameApr 65479
53
- #define SysConst_SShortMonthNameMay 65480
54
- #define SysConst_SShortMonthNameJun 65481
55
- #define SysConst_SShortMonthNameJul 65482
56
- #define SysConst_SShortMonthNameAug 65483
57
- #define SysConst_SShortMonthNameSep 65484
58
- #define SysConst_SShortMonthNameOct 65485
59
- #define SysConst_SShortMonthNameNov 65486
60
- #define SysConst_SShortMonthNameDec 65487
61
- #define SysConst_SVarArrayLocked 65488
62
- #define SysConst_SInvalidVarCast 65489
63
- #define SysConst_SInvalidVarOp 65490
64
- #define SysConst_SInvalidVarOpWithHResultWithPrefix 65491
65
- #define SysConst_SVarTypeCouldNotConvert 65492
66
- #define SysConst_SVarTypeConvertOverflow 65493
67
- #define SysConst_SVarOverflow 65494
68
- #define SysConst_SVarInvalid 65495
69
- #define SysConst_SVarBadType 65496
70
- #define SysConst_SVarNotImplemented 65497
71
- #define SysConst_SVarUnexpected 65498
72
- #define SysConst_SExternalException 65499
73
- #define SysConst_SAssertionFailed 65500
74
- #define SysConst_SIntfCastError 65501
75
- #define SysConst_SSafecallException 65502
76
- #define SysConst_SAssertError 65503
77
- #define SysConst_SInvalidPointer 65504
78
- #define SysConst_SInvalidCast 65505
79
- #define SysConst_SAccessViolationArg3 65506
80
- #define SysConst_SAccessViolationNoArg 65507
81
- #define SysConst_SStackOverflow 65508
82
- #define SysConst_SControlC 65509
83
- #define SysConst_SPrivilege 65510
84
- #define SysConst_SException 65511
85
- #define SysConst_SExceptTitle 65512
86
- #define SysConst_SInvalidFormat 65513
87
- #define SysConst_SArgumentMissing 65514
88
- #define SysConst_SDispatchError 65515
89
- #define SysConst_SReadAccess 65516
90
- #define SysConst_SWriteAccess 65517
91
- #define SysConst_SVarArrayCreate 65518
92
- #define SysConst_SVarArrayBounds 65519
93
- #define SysConst_SOutOfMemory 65520
94
- #define SysConst_SInOutError 65521
95
- #define SysConst_SFileNotFound 65522
96
- #define SysConst_SInvalidFilename 65523
97
- #define SysConst_STooManyOpenFiles 65524
98
- #define SysConst_SAccessDenied 65525
99
- #define SysConst_SEndOfFile 65526
100
- #define SysConst_SDiskFull 65527
101
- #define SysConst_SInvalidInput 65528
102
- #define SysConst_SDivByZero 65529
103
- #define SysConst_SRangeError 65530
104
- #define SysConst_SIntOverflow 65531
105
- #define SysConst_SInvalidOp 65532
106
- #define SysConst_SZeroDivide 65533
107
- #define SysConst_SOverflow 65534
108
- #define SysConst_SUnderflow 65535
109
- STRINGTABLE
110
- BEGIN
111
- RTLConsts_SSeekNotImplemented, "%s.Seek not implemented"
112
- RTLConsts_SWriteError, "Stream write error"
113
- SysConst_SShortDayNameThu, "Thu"
114
- SysConst_SShortDayNameFri, "Fri"
115
- SysConst_SShortDayNameSat, "Sat"
116
- SysConst_SLongDayNameSun, "Sunday"
117
- SysConst_SLongDayNameMon, "Monday"
118
- SysConst_SLongDayNameTue, "Tuesday"
119
- SysConst_SLongDayNameWed, "Wednesday"
120
- SysConst_SLongDayNameThu, "Thursday"
121
- SysConst_SLongDayNameFri, "Friday"
122
- SysConst_SLongDayNameSat, "Saturday"
123
- RTLConsts_SAssignError, "Cannot assign a %s to a %s"
124
- RTLConsts_SCantWriteResourceStreamError, "Can't write to a read-only resource stream"
125
- RTLConsts_SListCapacityError, "List capacity out of bounds (%d)"
126
- RTLConsts_SListCountError, "List count out of bounds (%d)"
127
- RTLConsts_SListIndexError, "List index out of bounds (%d)"
128
- RTLConsts_SResNotFound, "Resource %s not found"
129
- SysConst_SLongMonthNameJan, "January"
130
- SysConst_SLongMonthNameFeb, "February"
131
- SysConst_SLongMonthNameMar, "March"
132
- SysConst_SLongMonthNameApr, "April"
133
- SysConst_SLongMonthNameMay, "May"
134
- SysConst_SLongMonthNameJun, "June"
135
- SysConst_SLongMonthNameJul, "July"
136
- SysConst_SLongMonthNameAug, "August"
137
- SysConst_SLongMonthNameSep, "September"
138
- SysConst_SLongMonthNameOct, "October"
139
- SysConst_SLongMonthNameNov, "November"
140
- SysConst_SLongMonthNameDec, "December"
141
- SysConst_SShortDayNameSun, "Sun"
142
- SysConst_SShortDayNameMon, "Mon"
143
- SysConst_SShortDayNameTue, "Tue"
144
- SysConst_SShortDayNameWed, "Wed"
145
- SysConst_SAbstractError, "Abstract Error"
146
- SysConst_SModuleAccessViolation, "Access violation at address %p in module '%s'. %s of address %p"
147
- SysConst_SOSError, "System Error. Code: %d.\r\n%s"
148
- SysConst_SUnkOSError, "A call to an OS function failed"
149
- SysConst_SShortMonthNameJan, "Jan"
150
- SysConst_SShortMonthNameFeb, "Feb"
151
- SysConst_SShortMonthNameMar, "Mar"
152
- SysConst_SShortMonthNameApr, "Apr"
153
- SysConst_SShortMonthNameMay, "May"
154
- SysConst_SShortMonthNameJun, "Jun"
155
- SysConst_SShortMonthNameJul, "Jul"
156
- SysConst_SShortMonthNameAug, "Aug"
157
- SysConst_SShortMonthNameSep, "Sep"
158
- SysConst_SShortMonthNameOct, "Oct"
159
- SysConst_SShortMonthNameNov, "Nov"
160
- SysConst_SShortMonthNameDec, "Dec"
161
- SysConst_SVarArrayLocked, "Variant or safe array is locked"
162
- SysConst_SInvalidVarCast, "Invalid variant type conversion"
163
- SysConst_SInvalidVarOp, "Invalid variant operation"
164
- SysConst_SInvalidVarOpWithHResultWithPrefix, "Invalid variant operation (%s%.8x)\n%s"
165
- SysConst_SVarTypeCouldNotConvert, "Could not convert variant of type (%s) into type (%s)"
166
- SysConst_SVarTypeConvertOverflow, "Overflow while converting variant of type (%s) into type (%s)"
167
- SysConst_SVarOverflow, "Variant overflow"
168
- SysConst_SVarInvalid, "Invalid argument"
169
- SysConst_SVarBadType, "Invalid variant type"
170
- SysConst_SVarNotImplemented, "Operation not supported"
171
- SysConst_SVarUnexpected, "Unexpected variant error"
172
- SysConst_SExternalException, "External exception %x"
173
- SysConst_SAssertionFailed, "Assertion failed"
174
- SysConst_SIntfCastError, "Interface not supported"
175
- SysConst_SSafecallException, "Exception in safecall method"
176
- SysConst_SAssertError, "%s (%s, line %d)"
177
- SysConst_SInvalidPointer, "Invalid pointer operation"
178
- SysConst_SInvalidCast, "Invalid class typecast"
179
- SysConst_SAccessViolationArg3, "Access violation at address %p. %s of address %p"
180
- SysConst_SAccessViolationNoArg, "Access violation"
181
- SysConst_SStackOverflow, "Stack overflow"
182
- SysConst_SControlC, "Control-C hit"
183
- SysConst_SPrivilege, "Privileged instruction"
184
- SysConst_SException, "Exception %s in module %s at %p.\r\n%s%s\r\n"
185
- SysConst_SExceptTitle, "Application Error"
186
- SysConst_SInvalidFormat, "Format '%s' invalid or incompatible with argument"
187
- SysConst_SArgumentMissing, "No argument for format '%s'"
188
- SysConst_SDispatchError, "Variant method calls not supported"
189
- SysConst_SReadAccess, "Read"
190
- SysConst_SWriteAccess, "Write"
191
- SysConst_SVarArrayCreate, "Error creating variant or safe array"
192
- SysConst_SVarArrayBounds, "Variant or safe array index out of bounds"
193
- SysConst_SOutOfMemory, "Out of memory"
194
- SysConst_SInOutError, "I/O error %d"
195
- SysConst_SFileNotFound, "File not found"
196
- SysConst_SInvalidFilename, "Invalid filename"
197
- SysConst_STooManyOpenFiles, "Too many open files"
198
- SysConst_SAccessDenied, "File access denied"
199
- SysConst_SEndOfFile, "Read beyond end of file"
200
- SysConst_SDiskFull, "Disk full"
201
- SysConst_SInvalidInput, "Invalid numeric input"
202
- SysConst_SDivByZero, "Division by zero"
203
- SysConst_SRangeError, "Range check error"
204
- SysConst_SIntOverflow, "Integer overflow"
205
- SysConst_SInvalidOp, "Invalid floating point operation"
206
- SysConst_SZeroDivide, "Floating point division by zero"
207
- SysConst_SOverflow, "Floating point overflow"
208
- SysConst_SUnderflow, "Floating point underflow"
209
- END
210
-