[NTOS]: No good deed goes unpunished. Continuing the novel/saga from a couple of...
[reactos.git] / reactos / subsystems / win32 / csrss / print.c
1 /* $Id$
2 *
3 * smss.c - Session Manager
4 *
5 * ReactOS Operating System
6 *
7 * --------------------------------------------------------------------
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 * --------------------------------------------------------------------
24 *
25 * 19990529 (Emanuele Aliberti)
26 * Compiled successfully with egcs 1.1.2
27 */
28
29 #include <csrss.h>
30
31 #define NDEBUG
32 #include <debug.h>
33
34 VOID WINAPI DisplayString(LPCWSTR lpwString)
35 {
36 UNICODE_STRING us;
37
38 RtlInitUnicodeString (&us, lpwString);
39 ZwDisplayString (&us);
40 }
41
42 VOID WINAPI PrintString (char* fmt, ...)
43 {
44 char buffer[512];
45 va_list ap;
46 UNICODE_STRING UnicodeString;
47 ANSI_STRING AnsiString;
48
49 va_start(ap, fmt);
50 vsprintf(buffer, fmt, ap);
51 va_end(ap);
52
53 RtlInitAnsiString (&AnsiString, buffer);
54 RtlAnsiStringToUnicodeString (&UnicodeString,
55 &AnsiString,
56 TRUE);
57 NtDisplayString(&UnicodeString);
58 RtlFreeUnicodeString (&UnicodeString);
59 }
60
61 /* EOF */