pspsdk-1.0+beta2
pspsysclib.h
Go to the documentation of this file.
1 /*
2  * PSP Software Development Kit - http://www.pspdev.org
3  * -----------------------------------------------------------------------
4  * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5  *
6  * pspsysclib.h - Interface to sysclib library.
7  *
8  * Copyright (c) 2007 James F
9  *
10  * $Id$
11  */
12 
13 #ifndef PSPSYSCLIB_H
14 #define PSPSYSCLIB_H
15 
16 #include <pspkerneltypes.h>
17 #include <stdarg.h>
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
24 typedef void (*prnt_callback)(void *ctx, int ch);
25 
35 void prnt(prnt_callback cb, void *ctx, const char *fmt, va_list args);
36 
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 #endif