mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 12:46:46 +00:00
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
|