Syntax
viewdll.dll |
void VD_API VdBroadWinKrlFree(); |
Bwdllobj |
Public Sub KrlFree() |
C# |
Void KrlFree(); |
Parameters
None.
Return Value
None.
Remarks
User should not call any other function that provide within the kernel library after calling the KrlFree() function. All the behavior could not be guarantee if user call the other kernel function after calling the KrlFree() function.
C# Sample Code
private void BtnKrlFree_Click(object sender, EventArgs e) { ViewDllWrap.KrlFree(); }
|