ds_queue_create

This function creates a new queue data structure and returns a Handle to it. This value should be stored in a variable and used in all further function calls relating to the queue.

 

Syntax:

ds_queue_create();

 

Returns:

DS Queue

 

Example:

queue = ds_queue_create();

This will create a new queue and assign its index id to the instance variable queue.