go-waku/library/ios.go

14 lines
243 B
Go
Raw Normal View History

//go:build darwin && cgo
2022-03-21 23:15:53 +00:00
// +build darwin,cgo
2023-08-10 13:30:38 +00:00
package library
2022-03-21 23:15:53 +00:00
/*
#cgo CFLAGS: -x objective-c
#cgo LDFLAGS: -framework Foundation
#include <stddef.h>
#include <stdbool.h>
2023-08-10 13:30:38 +00:00
extern bool ServiceSignalEvent( const char *jsonEvent );
2022-03-21 23:15:53 +00:00
*/
import "C"