forked from KolibriOS/kolibrios
d4a127c1cb
Makefile: add 'strip' console_obj.h: console.obj loading hello.cpp: add console.obj functions git-svn-id: svn://kolibrios.org@8182 a494cfbc-eb01-0410-851d-a64ba20cac60
22 lines
328 B
C++
Executable File
22 lines
328 B
C++
Executable File
// for 'cout'
|
|
#include <iostream>
|
|
|
|
// for 'console.obj' functions
|
|
#include "console_obj.h"
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
// load console.obj
|
|
load_console();
|
|
|
|
con_set_title("C++ Console.obj example");
|
|
|
|
cout << "Press any key...\n";
|
|
con_getch();
|
|
cout << "Hello, KolibriOS!\n";
|
|
con_set_title("Hello");
|
|
return 0;
|
|
}
|