Home / lang / alloc 
Edit  Rename  Undo  Refresh   
fr  de  es  it  nl  pl  pt  pt_BR  mk  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
Documentation
History  
Alloc - History
07/23/2005 13:22:46 - gambas
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
Allocates a memory block containing the specified string and returns             Allocates a memory block containing the specified string and returns          
a pointer on it. The size of the memory block is the string length               a pointer on it.                                                               
                                                                                                                                                                
                                                                                 The size of the memory block is the string length                              
plus one extra byte for the final null character.                                plus one extra byte for the final null character.                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
07/23/2005 13:22:34 - gambas
..............................................................................   ..............................................................................
_Pointer_ *= Alloc (* _Size_ AS Integer [ *,* _Count_ AS Integer ] *)*           _Pointer_ *= Alloc (* _Size_ AS Integer [ *,* _Count_ AS Integer ] *)*        
}                                                                                }                                                                             
                                                                                                                                                               
Allocates a memory block of _Size_ * _Count_ bytes and returns a pointer on it   Allocates a memory block of _Size_ \* _Count_ bytes and returns a pointer on i 
                                                                                                                                                               
By default, _Count_ is one.                                                      By default, _Count_ is one.                                                   
                                                                                                                                                               
..............................................................................   ..............................................................................
07/23/2005 13:22:21 - gambas
Creation