mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-12 23:04:45 +00:00
14 lines
243 B
Go
14 lines
243 B
Go
//go:build darwin && cgo
|
|
// +build darwin,cgo
|
|
|
|
package library
|
|
|
|
/*
|
|
#cgo CFLAGS: -x objective-c
|
|
#cgo LDFLAGS: -framework Foundation
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
extern bool ServiceSignalEvent( const char *jsonEvent );
|
|
*/
|
|
import "C"
|