12345678910111213141516171819202122232425262728293031323334353637 |
- .. _func_banks_resizebank:
- ==========
- ResizeBank
- ==========
- ResizeBank -
- Description
- ===========
- .. code-block:: blitzmax
- ResizeBank( bank:TBank,size )
- Resize a bank
- #ResizeBank modifies the size limit of a bank. This may cause memory to be
- allocated if the requested size is greater than the bank's current capacity,
- see #BankCapacity for more information.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|