Share via


InitFramework

Applies to: Excel 2010 | Office 2010 | VBA | 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

Concepts

Functions in the Framework Library