Implement dbg log interface

This commit is contained in:
TuxSH
2018-03-06 01:29:06 +01:00
parent a65d380889
commit d2b1febb43
11 changed files with 471 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#ifndef EXOSPHERE_DBG_LOG_DEVICE_NULL_H
#define EXOSPHERE_DBG_LOG_DEVICE_NULL_H
#include "log.h"
typedef struct {
debug_log_device_t super;
/* Additonnal attributes go here */
} debug_log_device_null_t;
extern debug_log_device_null_t g_debug_log_device_null;
#endif