1
0
Fork 0

OsmoVTY: Use the # for the inner array's too

This commit is contained in:
Holger Hans Peter Freyther 2010-09-11 16:20:43 +08:00
parent e0e3681457
commit 2eaed1fe27
1 changed files with 6 additions and 6 deletions

View File

@ -4,12 +4,12 @@ CStruct subclass: vty_app_info [
<category: 'libosmovty'>
<comment: 'I represent the vty_app_info... some structs are wrong'>
<declaration: #(
(#name #string)
(#version #string)
(#copyright #string)
(#tall_ctx (#ptr #int))
(#go_parent_cb (#ptr #int))
(#is_config_node (#ptr #int))) >
#(#name #string)
#(#version #string)
#(#copyright #string)
#(#tall_ctx #(#ptr #int))
#(#go_parent_cb #(#ptr #int))
#(#is_config_node #(#ptr #int))) >
]
Object subclass: OSMOVTY [