Changeset 184 for trunk/thune/files.c
- Timestamp:
- 06/12/06 01:58:22 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/files.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/files.c
r89 r184 58 58 if( ctx.vblkN ) 59 59 { 60 ur_ setType( a1, UT_PORT );60 ur_initType( a1, UT_PORT ); 61 61 a1->DEVICE_CLASS = it - ((OPortDevice**) arr->buf); 62 62 a1->ctx = ctx; … … 97 97 logic = 1; 98 98 99 ur_ setType(tos, UT_LOGIC);99 ur_initType(tos, UT_LOGIC); 100 100 ur_logic(tos) = logic; 101 101 } … … 118 118 else 119 119 { 120 ur_ setType(tos, UT_INT);120 ur_initType(tos, UT_INT); 121 121 ur_int(tos) = size; 122 122 } … … 136 136 status = 0; 137 137 138 ur_ setType(tos, UT_LOGIC);138 ur_initType(tos, UT_LOGIC); 139 139 ur_logic(tos) = status; 140 140 } … … 379 379 buf->used = n; 380 380 381 ur_ setType( tos, UT_STRING );381 ur_initType( tos, UT_STRING ); 382 382 //orRefineSet(REF_READ_BINARY) ? UT_BINARY : UT_STRING 383 383 ur_setSeries( tos, binN, 0 ); … … 579 579 } 580 580 581 ur_ setType( tos, UT_BINARY );581 ur_initType( tos, UT_BINARY ); 582 582 ur_setSeries( tos, binN, 0 ); 583 583 }
