this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

msgtracer_client.h can apparently be used in C++; handle that

+8
+8
src/libDiagnosticMessagesClient/include/msgtracer_client.h
··· 3 3 4 4 #include <asl.h> 5 5 6 + #ifdef __cplusplus 7 + extern "C" { 8 + #endif 9 + 6 10 /** 7 11 * how it seems to be used: 8 12 * msgtracer_log_with_keys( ··· 17 21 * ) 18 22 */ 19 23 extern void msgtracer_log_with_keys(char* logger_id, int log_level, ...); 24 + 25 + #ifdef __cplusplus 26 + }; 27 + #endif 20 28 21 29 #endif