mirror of
https://github.com/joel16/VITAlbum.git
synced 2024-11-23 03:29:54 +00:00
8 lines
112 B
C++
8 lines
112 B
C++
#pragma once
|
|
|
|
namespace Log {
|
|
int Init(void);
|
|
int Exit(void);
|
|
int Error(const char *format, ...);
|
|
}
|