mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-13 07:14:10 +00:00
f1f6cb04f0
* feat: kotlin android example * Adding lightpush and store to kotlin example
14 lines
248 B
Go
14 lines
248 B
Go
//go:build darwin && cgo
|
|
// +build darwin,cgo
|
|
|
|
package gowaku
|
|
|
|
/*
|
|
#cgo CFLAGS: -x objective-c
|
|
#cgo LDFLAGS: -framework Foundation
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
extern bool StatusServiceSignalEvent( const char *jsonEvent );
|
|
*/
|
|
import "C"
|