go-waku/library/ios.go

14 lines
243 B
Go
Raw Normal View History

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