mirror of
https://github.com/go-vgo/robotgo
synced 2026-05-23 09:48:59 +00:00
15 lines
211 B
C
15 lines
211 B
C
|
|
#ifndef _included_logger
|
|
#define _included_logger
|
|
|
|
#include "iohook.h"
|
|
#include <stdbool.h>
|
|
|
|
#ifndef __FUNCTION__
|
|
#define __FUNCTION__ __func__
|
|
#endif
|
|
|
|
// logger(level, message)
|
|
extern logger_t logger;
|
|
|
|
#endif
|