mirror of
https://github.com/joel16/NX-Shell.git
synced 2024-11-23 03:39:49 +00:00
8 lines
113 B
C++
8 lines
113 B
C++
#pragma once
|
|
|
|
namespace Log {
|
|
void Init(void);
|
|
void Error(const char *data, ...);
|
|
void Exit(void);
|
|
}
|