Changeset 123 for Include/basic/dos_console.sbp
- Timestamp:
- Mar 1, 2007, 12:31:13 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/dos_console.sbp
r110 r123 55 55 Wend 56 56 57 Select Case _System_InputDataType[i] 58 Case _System_Type_Double 59 SetDouble(_System_InputDataPtr[i],Val(buf)) 60 Case _System_Type_Single 61 SetSingle(_System_InputDataPtr[i],Val(buf)) 62 Case _System_Type_Int64,_System_Type_QWord 63 SetQWord(_System_InputDataPtr[i],Val(buf)) 64 Case _System_Type_Long,_System_Type_DWord 65 SetDWord(_System_InputDataPtr[i],Val(buf)) 66 Case _System_Type_Integer,_System_Type_Word 67 SetWord(_System_InputDataPtr[i],Val(buf)) 68 Case _System_Type_Char,_System_Type_Byte 69 SetByte(_System_InputDataPtr[i],Val(buf)) 70 Case _System_Type_String 71 Dim pTempStr As *String 72 pTempStr=_System_InputDataPtr[i] As *String 73 pTempStr->Assign(buf, i3) 74 End Select 57 _System_Input_SetArgument(_System_InputDataPtr[i], _System_InputDataType[i], buf, i3) 75 58 76 59 i++
Note:
See TracChangeset
for help on using the changeset viewer.