18 lines
248 B
C
18 lines
248 B
C
#ifndef DEFINES__H_
|
|
#define DEFINES__H_
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#define HLOG_ERROR 1
|
|
#define HLOG_WARNING 3
|
|
#define HLOG_INFO1 5
|
|
#define HLOG_INFO2 6
|
|
#define HLOG_INFO3 7
|
|
#define HLOG_INFO4 9
|
|
#define HLOG_INFO5 11
|
|
|
|
#endif
|