aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-10-18 18:22:03 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-10-18 18:22:03 +0200
commitbf3a93c098ee8a732aec47ef4974fd5bf6c2a809 (patch)
tree10a05fd0d24c581cdc66f5d0850a92ad6e3b2dca
parent7ea34baedc50607eeceec9fa6761fed3d792affb (diff)
Osmocore: Bind some msgb related methods
-rw-r--r--OsmoCore.st17
1 files changed, 17 insertions, 0 deletions
diff --git a/OsmoCore.st b/OsmoCore.st
index 314c92e..6f7a407 100644
--- a/OsmoCore.st
+++ b/OsmoCore.st
@@ -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 [