mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-02 22:13:06 +00:00
14 lines
243 B
Go
14 lines
243 B
Go
//go:build darwin && cgo
|
|
// +build darwin,cgo
|
|
|
|
package library
|
|
|
|
/*
|
|
#cgo CFLAGS: -x objective-c
|
|
#cgo LDFLAGS: -framework Foundation
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
extern bool ServiceSignalEvent( const char *jsonEvent );
|
|
*/
|
|
import "C"
|