InitFramework
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
Framework library function that initializes the Framework library, which simply initializes the temporary XLOPER/XLOPER12 memory data structures, freeing any memory that has already been allocated.
short WINAPI InitFramework(void);
Parameters
This function takes no arguments.
Return Value
This function does not return a value.
Example
This example uses the InitFramework function to free all temporary memory.
\SAMPLES\EXAMPLE\EXAMPLE.C
short WINAPI InitFrameworkExample(void)
{
InitFramework();
return 1;
}