Terminate C-LOGGER and disable to access.
Ret = LoggerCloseApplication ( AppId , CloseStatus)
AppId [ VB.NET: Short ] [ C++: short ] [ C#: short ]
Specify Application ID retrieved by LoggerOpenApplication.
CloseStatus [ VB.NET: Integer ] [ C++: long * ] [ C#: out int ]
The status of C-LOGGER when it is terminated.
Value [Dec] |
Macro |
Description |
0 |
LOGGER_STATUS_SUCCESS |
Normal completed |
1 |
LOGGER_STATUS_FAILURE |
C-LOGGER termination error |
Ret [ VB.NET: Integer ] [ C++: long ] [ C#: int ]
Definition |
Return code [Dec] |
Description |
LOGGER_ERR_SUCCESS |
0 |
Normal completed |
The others (See also: Error Code List)
Perform termination process.
VB.NET |
Dim Ret As Integer Dim CloseStatus As Integer Ret = LoggerCloseApplication(AppId, CloseStatus)
|
C++ |
long Ret; long CloseStatus; Ret = LoggerCloseApplication(AppId, &CloseSttus);
|
C# |
int Ret; int CloseStatus; Ret = logger.CloseApplication(AppId, out CloseStatus);
|