finish removing unused code (getACNEvents, getContactEvents, getRepaintEvent, SelectProfile
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dan Ballard 2021-06-15 10:20:12 -07:00
parent d921612d25
commit 00c5412551
1 changed files with 0 additions and 11 deletions

11
lib.go
View File

@ -341,17 +341,6 @@ func c_CreateProfile(nick_ptr *C.char, nick_len C.int, pass_ptr *C.char, pass_le
func CreateProfile(nick, pass string) {
application.CreatePeer(nick, pass)
}
/*
//export c_SelectProfile
func c_SelectProfile(onion_ptr *C.char, onion_len C.int) *C.char {
return C.CString(SelectProfile(C.GoStringN(onion_ptr, onion_len)))
}
func SelectProfile(onion string) string {
contactEventsQueue = event.NewQueue()
application.GetEventBus(onion).Subscribe(event.PeerStateChange, contactEventsQueue)
return ""
}*/
//export c_LoadProfiles
func c_LoadProfiles(passwordPtr *C.char, passwordLen C.int) {