mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
17 lines
277 B
Go
17 lines
277 B
Go
// +build nimbus
|
|
|
|
package nimbusbridge
|
|
|
|
/*
|
|
|
|
#include <libnimbus.h>
|
|
|
|
// onMessageHandler gateway function
|
|
void onMessageHandler_cgo(received_message * msg, void* udata)
|
|
{
|
|
void onMessageHandler(received_message* msg, void* udata);
|
|
onMessageHandler(msg, udata);
|
|
}
|
|
*/
|
|
import "C"
|