status-go/signal/ios.go

13 lines
223 B
Go
Raw Normal View History

2016-10-17 12:29:00 +00:00
// +build darwin,cgo
package signal
2016-10-17 12:29:00 +00:00
/*
#cgo CFLAGS: -x objective-c
#cgo LDFLAGS: -framework Foundation
#include <stddef.h>
#include <stdbool.h>
extern bool StatusServiceSignalEvent( const char *jsonEvent );
*/
import "C"