Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
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;
}