source: trunk/src/win32k/kKrnlLib/include/kKLprintf.h

Last change on this file was 7115, checked in by bird, 24 years ago

New logging facility with some mess/cleanups.

File size: 609 bytes
Line 
1/* $Id: kKLprintf.h,v 1.3 2001-10-19 00:04:45 bird Exp $
2 *
3 * printf/vprintf header file.
4 *
5 * Copyright (c) 1999 knut st. osmundsen
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11#ifndef _vprintf_h_
12#define _vprintf_h_
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18#ifndef va_arg
19#include <stdarg.h> /* C library stdarg.h. */
20#endif
21
22
23/*
24 * Function prototypes
25 */
26int printf(const char *pszFormat, ...);
27int vprintf(const char *pszFormat, va_list args);
28int vprintf2(const char *pszFormat, va_list args);
29
30#include <kKLstdarg.h>
31
32#ifdef __cplusplus
33}
34#endif
35#endif
Note: See TracBrowser for help on using the repository browser.