| | | |
| PokeDouble | Poke a double into a bank
A double requires 8 bytes of storage | 0 | Nobody (1+ years ago) |
| PokeFloat | Poke a float into a bank
A float requires 4 bytes of storage | 0 | Nobody (1+ years ago) |
| PokeInt | Poke an int into a bank
An int is a signed 32 bit value that requires 4 bytes of storage... | 0 | Nobody (1+ years ago) |
| PokeLong | Poke a long integer int into a bank
A long is a 64 bit integer that requires 8 bytes of storage... | 0 | Nobody (1+ years ago) |
| PokeShort | Poke a short into a bank
An short is an unsigned 16 bit value that requires 2 bytes of storage... | 0 | Nobody (1+ years ago) |
| PollEvent | Get the next event from the event queue
PollEvent removes an event from the event queue and updates the CurrentEvent
global variable... | 0 | Nobody (1+ years ago) |
| PollSystem | Poll operating system
PollSystem returns control back to the operating system, allowing such
events as keystrokes and gadget actions to be processed... | 0 | Nobody (1+ years ago) |
| PopupWindowMenu | Display a popup menu... | 0 | Nobody (1+ years ago) |
| PostEvent | Post an event to the event queue
PostEvent adds an event to the end of the event queue... | 0 | Nobody (1+ years ago) |
| Print | Write a string to the standard IO stream
A newline character is also written after str... | 0 | Nobody (1+ years ago) |
| Private | Private makes a Constant, Global variable or Function only accessible from within the current source file | 0 | Nobody (1+ years ago) |
| Proceed | Request user confirmation or cancellation... | 0 | Nobody (1+ years ago) |
| Public | Public makes a Constant, Global variable or Function accessible from outside the current source file (Default) | 0 | Nobody (1+ years ago) |
| QueryGadget | Return internal gadget properties... | 0 | Nobody (1+ years ago) |
| Rand | Generate random integer
The optional parameter allows you to use Rand in 2 ways:
[ Format | Result
* &Rand(x) | Random integer in the range 1 to x (inclusive)
* &Rand(x,y) | Random integer in the range x to y (inclusive)
] | 0 | Nobody (1+ years ago) |
| ReadBank | Read bytes from a Stream to a Bank | 0 | Nobody (1+ years ago) |
| ReadByte | Read a Byte from a stream
ReadByte reads a single Byte from stream... | 0 | Nobody (1+ years ago) |
| ReadData | Read classic BASIC style data | 0 | Nobody (1+ years ago) |
| ReadDir | Open a directory | 0 | Nobody (1+ years ago) |
| ReadDouble | Read a Double from a stream
ReadDouble reads 8 bytes from stream... | 0 | Nobody (1+ years ago) |
| ReadFile | Open a file for input... | 0 | Nobody (1+ years ago) |
| ReadFloat | Read a Float from a stream
ReadFloat reads 4 bytes from stream... | 0 | Nobody (1+ years ago) |
| ReadInt | Read an Int from a stream
ReadInt reads 4 bytes from stream... | 0 | Nobody (1+ years ago) |
| ReadLine | Read a line of text from a stream
Bytes are read from stream until a newline character (ascii code 10) or null
character (ascii code 0) is read, or end of file is detected... | 0 | Nobody (1+ years ago) |
| ReadLong | Read a Long from a stream
ReadLong reads 8 bytes from stream... | 0 | Nobody (1+ years ago) |