InitFramework

Framework library function. This function initializes the Framework library.

This function does not return a value.

Syntax

InitFramework(void);

This function has no arguments.

Example

This example uses the InitFramework function to free all temporary memory.

\SAMPLES\EXAMPLE\EXAMPLE.C

short WINAPI InitFrameworkExample(void)
{
    InitFramework();
    return 1;
}