VITAlbum/include/log.h

8 lines
112 B
C++

#pragma once
namespace Log {
int Init(void);
int Exit(void);
int Error(const char *format, ...);
}