2016-10-05 17:40:22 +00:00
|
|
|
/*
|
2017-10-16 21:58:23 +00:00
|
|
|
* PROJECT: ReactOS Console Utilities Library
|
|
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
|
|
* PURPOSE: Provides simple abstraction wrappers around CRT streams or
|
|
|
|
* Win32 console API I/O functions, to deal with i18n + Unicode
|
|
|
|
* related problems.
|
|
|
|
* COPYRIGHT: Copyright 2017-2018 ReactOS Team
|
|
|
|
* Copyright 2017-2018 Hermes Belusca-Maito
|
2016-10-05 17:40:22 +00:00
|
|
|
*/
|
|
|
|
|
2018-02-01 23:35:08 +00:00
|
|
|
/**
|
|
|
|
* @file conutils.h
|
|
|
|
* @ingroup ConUtils
|
|
|
|
*
|
|
|
|
* @defgroup ConUtils ReactOS Console Utilities Library
|
|
|
|
*
|
|
|
|
* @brief This library contains common functions used in many places inside
|
|
|
|
* the ReactOS console utilities and the ReactOS Command-Line Interpreter.
|
|
|
|
* Most of these functions are related with internationalisation and
|
|
|
|
* the problem of correctly displaying Unicode text on the console.
|
|
|
|
* Besides those, helpful functions for retrieving strings and messages
|
|
|
|
* from application resources are provided, together with printf-like
|
|
|
|
* functionality.
|
|
|
|
**/
|
|
|
|
|
2016-10-05 17:40:22 +00:00
|
|
|
#ifndef __CONUTILS_H__
|
|
|
|
#define __CONUTILS_H__
|
|
|
|
|
2017-10-16 21:58:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-10-05 17:40:22 +00:00
|
|
|
#ifndef _UNICODE
|
|
|
|
#error The ConUtils library only supports compilation with _UNICODE defined, at the moment!
|
|
|
|
#endif
|
|
|
|
|
2016-10-22 21:54:29 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "stream.h"
|
2017-10-16 21:58:23 +00:00
|
|
|
// #include "instream.h"
|
|
|
|
#include "outstream.h"
|
2016-10-22 21:54:29 +00:00
|
|
|
#include "screen.h"
|
|
|
|
#include "pager.h"
|
2016-10-05 17:40:22 +00:00
|
|
|
|
|
|
|
#endif /* __CONUTILS_H__ */
|
2017-10-16 21:58:23 +00:00
|
|
|
|
|
|
|
/* EOF */
|