mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-09 19:31:11 +01:00
7f26b0cd13
* Add gobind builds for Yggdrasil demo * Massage client API a bit * Fix build * Fix gobind build * Fix gobind client API setup * Tweaks * Tweaks * Update sytest-whitelist, add comment * Default to sending push rules on initial sync
25 lines
453 B
Go
25 lines
453 B
Go
// +build ios
|
|
|
|
package gobind
|
|
|
|
/*
|
|
#cgo CFLAGS: -x objective-c
|
|
#cgo LDFLAGS: -framework Foundation
|
|
#import <Foundation/Foundation.h>
|
|
void Log(const char *text) {
|
|
NSString *nss = [NSString stringWithUTF8String:text];
|
|
NSLog(@"%@", nss);
|
|
}
|
|
*/
|
|
import "C"
|
|
import "unsafe"
|
|
|
|
type BindLogger struct {
|
|
}
|
|
|
|
func (nsl BindLogger) Write(p []byte) (n int, err error) {
|
|
p = append(p, 0)
|
|
cstr := (*C.char)(unsafe.Pointer(&p[0]))
|
|
C.Log(cstr)
|
|
return len(p), nil
|
|
}
|