RetroArch
|
#include <stdio.h>
#include <stdarg.h>
#include <string/stdstring.h>
#include <streams/file_stream.h>
#include <compat/fopen_utf8.h>
#include "file_path_special.h"
#include "verbosity.h"
Functions | |
void | verbosity_enable (void) |
void | verbosity_disable (void) |
bool | verbosity_is_enabled (void) |
bool * | verbosity_get_ptr (void) |
void * | retro_main_log_file (void) |
void | retro_main_log_file_init (const char *path) |
void | retro_main_log_file_deinit (void) |
void | RARCH_LOG_V (const char *tag, const char *fmt, va_list ap) |
void | RARCH_LOG_BUFFER (uint8_t *data, size_t size) |
void | RARCH_LOG (const char *fmt,...) |
void | RARCH_LOG_OUTPUT (const char *msg,...) |
void | RARCH_WARN (const char *fmt,...) |
void | RARCH_ERR (const char *fmt,...) |
Variables | |
static FILE * | log_file_fp = NULL |
static void * | log_file_buf = NULL |
static bool | main_verbosity = false |
static bool | log_file_initialized = false |