comparison deps/Platinum/ThirdParty/Neptune/Source/System/Win32/NptWin32Console.cpp @ 0:3425707ddbf6

Initial import (hopefully this mercurial stuff works...)
author fraserofthenight
date Mon, 06 Jul 2009 08:06:28 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3425707ddbf6
1 /*****************************************************************
2 |
3 | Neptune - Console Support: Win32 Implementation
4 |
5 | (c) 2002-2006 Gilles Boccon-Gibod
6 | Author: Gilles Boccon-Gibod (bok@bok.net)
7 |
8 ****************************************************************/
9
10 /*----------------------------------------------------------------------
11 | includes
12 +---------------------------------------------------------------------*/
13 #include <windows.h>
14 #include <stdio.h>
15
16 #include "NptConfig.h"
17 #include "NptConsole.h"
18
19 /*----------------------------------------------------------------------
20 | NPT_Console::Output
21 +---------------------------------------------------------------------*/
22 void
23 NPT_Console::Output(const char* message)
24 {
25 OutputDebugString(message);
26 printf("%s", message);
27 }
28