mirror of https://github.com/status-im/go-waku.git
13 lines
221 B
Go
13 lines
221 B
Go
|
// +build darwin,cgo
|
||
|
|
||
|
package main
|
||
|
|
||
|
/*
|
||
|
#cgo CFLAGS: -x objective-c
|
||
|
#cgo LDFLAGS: -framework Foundation
|
||
|
#include <stddef.h>
|
||
|
#include <stdbool.h>
|
||
|
extern bool StatusServiceSignalEvent( const char *jsonEvent );
|
||
|
*/
|
||
|
import "C"
|