'******************************************************************************
'* 
'* STANDARD PROGRAMMING LIBRARY (StdLib.*)
'* 
'* Automatically included to any script with Basic-like syntax
'*
'* Note: - Most of functional currently implemented internally due speed 
'*         reasons, but this module can be used to extend standard
'*         language functionality without changing executable file
'*       - Standard library must use its own modules only (to be reusable,
'*         i.e. application-independend)
'*
'******************************************************************************

? "[INIT] StdLib intialization"

public use internal "StdLib"

//Standard object implemenations
public const MEMORY_STREAM as string = "Stream\memory"
public const QUEUE_STREAM as string = "Stream\queue"
public const FILE_STREAM as string = "Stream\file"
public const BITMAP_IMAGE as string = "Bitmap\bitmap"
public const REF_LIST as string = "List\reflist"

//TODO - list of internal functionality (from documentation on scripts)