FrameBuffer is a special type of the I/O writer that outputs the character stream to the active console screen buffer.
| 39 | // FrameBuffer is a special type of the I/O writer that outputs the character stream to the |
| 40 | // active console screen buffer. |
| 41 | type FrameBuffer struct { |
| 42 | handle syscall.Handle |
| 43 | } |
| 44 | |
| 45 | // NewFrameBuffer builds a fresh frame buffer. |
| 46 | func NewFrameBuffer() (io.Writer, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected