27.3.2.2.4 KrlStatus

 

Check the kernel status.

 

Syntax

viewdll.dll

int VD_API VdBroadWinKrlStatus();

Bwdllobj

Public Function KrlStatus() As Integer

C#

Integer KrlStatus();

 

Parameters

None.

 

Return Value

If the kernel is running, the function will return 1. If the kernel is not running, the function will return 0.

 

Remarks

 

 

C# Sample Code

private void BtnKrlStatus_Click(object sender, EventArgs e)

{

    int result = ViewDllWrap.KrlStatus();

    MessageLog("KrlStatus() returns " + result.ToString());

    tbKrlStatus.Text = result.ToString();

}