Framework library function. This function initializes the Framework library.
This function does not return a value.
InitFramework(void);
This function has no arguments.
This example uses the InitFramework function to free all temporary memory.
\SAMPLES\EXAMPLE\EXAMPLE.C
short WINAPI InitFrameworkExample(void)
{
InitFramework();
return 1;
}