forked from Silverfish/proton-bridge
22 lines
235 B
C
22 lines
235 B
C
|
|
#pragma once
|
|
|
|
#ifndef GO_LOG_H
|
|
#define GO_LOG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // C++
|
|
|
|
void InstallMessageHandler();
|
|
void RegisterTypes();
|
|
;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // C++
|
|
|
|
#endif // LOG
|