15 lines
426 B
C++
15 lines
426 B
C++
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
namespace rem::log
|
|
{
|
|
void Info(const char* message);
|
|
void Warn(const char* message);
|
|
void Error(const char* message);
|
|
void ModuleMissing(const char* feature, const char* moduleName);
|
|
void ProcMissing(const char* feature, const char* procName);
|
|
void UnknownFeature(const char* featureName);
|
|
void FeatureInitFailed(const char* featureName, DWORD exceptionCode);
|
|
}
|