mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-01 14:43:55 +00:00
17 lines
236 B
C
17 lines
236 B
C
|
|
#ifndef _included_logger
|
|
#define _included_logger
|
|
|
|
// #include <uiohook.h>
|
|
#include "uiohook.h"
|
|
#include <stdbool.h>
|
|
|
|
#ifndef __FUNCTION__
|
|
#define __FUNCTION__ __func__
|
|
#endif
|
|
|
|
// logger(level, message)
|
|
extern logger_t logger;
|
|
|
|
#endif
|