N
AME
add_storage
- allocate space for object-local data
S
YNTAX
#include "program.h"
void add_storage(INT32
size
);
D
ESCRIPTION
This function allocates 'size' bytes in every object cloned from the program you are in the process of building. (Be sure to call start_new_program first...) Whenever one of your methods are called fp->current_storage will point to this area.
K
EYWORDS
program
S
EE
A
LSO
start_new_program
and
frame