vb@0: include yslt.yml2
vb@0: 
vb@0: tstylesheet {
vb@0:     function stType {
vb@0:         param "type";
vb@0: 
vb@0:         choose {
vb@0:             when "$type='long'" > DINT
vb@0:             when "$type='short'" > INT
vb@0:         }
vb@0:     }
vb@0: 
vb@0:     function cType {
vb@0:         param "type";
vb@0: 
vb@0:         when "$type='long'" > int32_t
vb@0:         when "$type='short'" > int16_t
vb@0:     }
vb@0: }