Updated vgaterminal.cpp to newer coding conventions.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-07-22 18:22:38 +02:00
parent d75a7145ef
commit 3907e14cb8
2 changed files with 515 additions and 533 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
/****************************************************************************** /*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
This file is part of Sortix. This file is part of Sortix.
@ -14,26 +14,26 @@
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details. details.
You should have received a copy of the GNU General Public License along You should have received a copy of the GNU General Public License along with
with Sortix. If not, see <http://www.gnu.org/licenses/>. Sortix. If not, see <http://www.gnu.org/licenses/>.
vgaterminal.h vgaterminal.cpp
A terminal based on the VGA text mode buffer. A terminal based on a text mode buffer.
******************************************************************************/ *******************************************************************************/
#ifndef SORTIX_VGATERMINAL_H #ifndef SORTIX_VGATERMINAL_H
#define SORTIX_VGATERMINAL_H #define SORTIX_VGATERMINAL_H
namespace Sortix namespace Sortix {
{ namespace VGATerminal {
namespace VGATerminal
{ void Init();
void Init(); void Reset();
void Reset(); size_t Print(void* user, const char* string, size_t stringlen);
size_t Print(void* user, const char* string, size_t stringlen);
} } // namespace VGATerminal
} } // namespace Sortix
#endif #endif