2022-03-08 13:17:26 +00:00
|
|
|
//go:build darwin && cgo
|
2018-08-10 11:23:28 +00:00
|
|
|
// +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"
|