InitFramework

Applies to: Excel 2013 | Office 2013 | Visual Studio

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;
}

See also

Functions in the Framework Library