1
0
Fork 0

Osmocore: Bind some msgb related methods

This commit is contained in:
Holger Hans Peter Freyther 2010-10-18 18:22:03 +02:00
parent 7ea34baedc
commit bf3a93c098
1 changed files with 17 additions and 0 deletions

View File

@ -49,9 +49,26 @@ Object subclass: OSMOCore [
OSMOCore class >> bsc_select_main: poll [
<cCall: 'bsc_select_main' returning: #int args: #(#int) >
]
OSMOCore class >> processEvents [
self bsc_select_main: 1
]
OSMOCore class >> msgb_length: aMsg [
<cCall: 'msgb_length' returning: #uInt args: #(#cObject) >
]
OSMOCore class >> msgb_data: aMsg [
<cCall: 'msgb_data' returning: #cObject args: #(#cObject) >
]
OSMOCore class >> msgb_free: aMsg [
<cCall: 'msgb_free' returning: #void args: #(#cObject) >
]
OSMOCore class >> gsm0480_create_ussd_resp: invokeId trans: transId text: aText [
<cCall: 'gsm0480_create_ussd_resp' returning: #cObject args: #(#int #int #string) >
]
]
Eval [