You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/InfoLogger/InfoLogger.h
+9-12Lines changed: 9 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -22,14 +22,13 @@ extern "C" {
22
22
#endif
23
23
24
24
/// Handle to infoLogger connection
25
-
typedefvoid*InfoLoggerHandle;
26
-
25
+
typedefvoid*InfoLoggerHandle;
27
26
28
27
/// Open infoLogger connection.
29
28
/// Resulting handle should be called by furhter InfoLogger function calls.
30
29
/// \param handle Variable where the resulting handle is stored, on success. Result by reference.
31
30
/// \return 0 on success, an error code otherwise.
32
-
intinfoLoggerOpen(InfoLoggerHandle*handle);
31
+
intinfoLoggerOpen(InfoLoggerHandle*handle);
33
32
34
33
/// Close infoLogger connection.
35
34
/// \param handle Handle to InfoLogger, as created by a previous infoLoggerOpen() call.
@@ -41,25 +40,23 @@ int infoLoggerClose(InfoLoggerHandle handle);
41
40
/// \param message NUL-terminated string message to push to the log system. It uses the same format as specified for printf(), and the function accepts additionnal formatting parameters.
42
41
/// \param ... Extra optionnal parameters for formatting.
43
42
/// \return 0 on success, an error code otherwise.
/// Log a message, with a list of arguments of type va_list.
47
46
/// \param handle Handle to InfoLogger, as created by a previous infoLoggerOpen() call.
48
47
/// \param message NUL-terminated string message to push to the log system. It uses the same format as specified for printf(), and the function accepts additionnal formatting parameters.
49
48
/// \param ap Variable list of arguments (c.f. vprintf)
50
49
/// \return 0 on success, an error code otherwise.
0 commit comments