Changeset 522 for trunk/ab5.0/ablib/src/basic/dos_console.sbp
- Timestamp:
 - Jun 21, 2008, 3:59:30 PM (17 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/ab5.0/ablib/src/basic/dos_console.sbp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/ab5.0/ablib/src/basic/dos_console.sbp
r497 r522 9 9 Dim _System_hConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE) 10 10 Dim _System_hConsoleIn = GetStdHandle(STD_INPUT_HANDLE) 11 System.Console.SetOut( 12 System.IO.TextWriter.Synchronized(New System.IO.StreamWriter( 13 New System.IO.FileStream(_System_hConsoleOut, System.IO.FileAccess.Write, False)))) 11 14 System.Console.SetIn( 12 15 System.IO.TextReader.Synchronized(New System.IO.StreamReader( … … 57 60 58 61 Dim dwAccessBytes As DWord 59 WriteConsole(_System_hConsoleOut, buf.StrPtr, buf.Length, dwAccessBytes, 0) 62 System.Console.Write(buf) 63 ' WriteConsole(_System_hConsoleOut, buf.StrPtr, buf.Length, dwAccessBytes, 0) 60 64 End Sub 61 65 /* TODO: _System_GetUsingFormatを用意して実装する  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  