|
|
|
|
|
by TimJYoung
3806 days ago
|
|
Those arguments are very old. Modern Object Pascal, (around since the mid 90's) has dynamic arrays that are used now instead of the old static arrays with hard-coded bounds. The only time that you use static arrays now is if you truly need a bounded array, such as when calling into an API call that has MAX_PATH or something similar as the bounds and you need a character buffer for a return argument. This also applies to strings, which are now also dynamic and reference-counted, and not some fixed buffer that is 255 bytes in length. You can still use most of the old stuff because the language is very backwards-compatible, but most people don't. |
|