mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
f26e849fb2
This reverts commit 27e432a5b1acb8b8d49629950d84cad11e0a75c6.
13 lines
223 B
Go
13 lines
223 B
Go
// +build darwin,cgo
|
|
|
|
package signal
|
|
|
|
/*
|
|
#cgo CFLAGS: -x objective-c
|
|
#cgo LDFLAGS: -framework Foundation
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
extern bool StatusServiceSignalEvent( const char *jsonEvent );
|
|
*/
|
|
import "C"
|