mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-10-05 09:07:09 +02:00
14 lines
278 B
C
14 lines
278 B
C
#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
|