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: src/common.h
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,6 @@ extern "C" {
30
30
"Please do not compile this with a lslboost version older than 1.45 because the library would otherwise not be protocol-compatible with builds using other versions."
31
31
#endif
32
32
33
-
externthread_localchar last_error[512];
34
-
35
33
// the highest supported protocol version
36
34
// * 100 is the original version, supported by library versions 1.00+
37
35
// * 110 is an alternative protocol that improves throughput, supported by library versions 1.10+
@@ -40,6 +38,9 @@ const int LSL_PROTOCOL_VERSION = 110;
40
38
// the library version
41
39
constint LSL_LIBRARY_VERSION = 115;
42
40
41
+
/// size of the lsl_last_error() buffer size
42
+
constint LAST_ERROR_SIZE = 512;
43
+
43
44
namespacelsl {
44
45
/// A very large time duration (> 1 year) for timeout values.
0 commit comments