2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 23:55:03 +00:00
Adam Babik f26e849fb2
Revert "Add build tags to signal package ()" ()
This reverts commit 27e432a5b1acb8b8d49629950d84cad11e0a75c6.
2018-08-10 13:23:28 +02:00

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"