Changeset 184 for trunk/thune/win32
- Timestamp:
- 06/12/06 01:58:22 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/win32/os.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/win32/os.c
r131 r184 51 51 logic = 1; 52 52 53 ur_ setType( tos, UT_LOGIC );53 ur_initType( tos, UT_LOGIC ); 54 54 ur_logic(tos) = logic; 55 55 } … … 81 81 memCpy( str->ptr.c, tmp, len ); 82 82 83 ur_ setType( tos, UT_STRING /*UT_FILE*/ );83 ur_initType( tos, UT_STRING /*UT_FILE*/ ); 84 84 ur_setSeries( tos, binN, 0 ); 85 85 return; … … 190 190 ur_seconds(tos) = tb.time + (tb.millitm * 0.001); 191 191 192 ur_ setType( tos, UT_TIME );192 ur_initType( tos, UT_TIME ); 193 193 } 194 194 … … 226 226 _findclose( handle ); 227 227 228 ur_ setType(res, UT_BLOCK);228 ur_initType(res, UT_BLOCK); 229 229 ur_setSeries(res, blkN, 0); 230 230 }
