2857bd450b0fce6f884b4d8b071a08fe27302968
[reactos.git] / sdk / lib / conutils / conutils.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Console Utilities Library
4 * FILE: sdk/lib/conutils/conutils.h
5 * PURPOSE: Provides simple abstraction wrappers around CRT streams or
6 * Win32 console API I/O functions, to deal with i18n + Unicode
7 * related problems.
8 * PROGRAMMERS: - Hermes Belusca-Maito (for the library);
9 * - All programmers who wrote the different console applications
10 * from which I took those functions and improved them.
11 */
12
13 #ifndef __CONUTILS_H__
14 #define __CONUTILS_H__
15
16 #ifndef _UNICODE
17 #error The ConUtils library only supports compilation with _UNICODE defined, at the moment!
18 #endif
19
20 #include "utils.h"
21 #include "stream.h"
22 #include "screen.h"
23 #include "pager.h"
24
25 #endif /* __CONUTILS_H__ */