Typedefs | |
typedef AVS_Environment_ | AVS_Environment |
opaque declaration of an environment. | |
Functions | |
AVS_C_API AVS_Environment * | avs_environment_new (int size) |
Create an environment. | |
AVS_C_API void | avs_environment_delete (AVS_Environment *p_env) |
Delete an AVS_Environment. |
The environment sets the quantity of memory that avisynth will use. You set it with the function avs_environment_new().
Once you have finished with an AVS_Environment (usually when avisynth is not used anymore), you delete it with avs_environment_delete().
AVS_C_API void avs_environment_delete | ( | AVS_Environment * | p_env | ) |
p_env | The environment to delete. |
p_env
.
AVS_C_API AVS_Environment* avs_environment_new | ( | int | size | ) |
size | The string that contains the script. |
size
(in bytes). If an error occurred, this function returns NULL
.