pspsysclib.h

Go to the documentation of this file.
00001 /*
00002  * PSP Software Development Kit - http://www.pspdev.org
00003  * -----------------------------------------------------------------------
00004  * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
00005  *
00006  * pspsysclib.h - Interface to sysclib library.
00007  *
00008  * Copyright (c) 2007 James F
00009  *
00010  * $Id$
00011  */
00012 
00013 #ifndef PSPSYSCLIB_H
00014 #define PSPSYSCLIB_H
00015 
00016 #include <pspkerneltypes.h>
00017 #include <stdarg.h>
00018 
00019 #ifdef __cplusplus
00020 extern "C" {
00021 #endif
00022 
00024 typedef void (*prnt_callback)(void *ctx, int ch);
00025 
00035 void prnt(prnt_callback cb, void *ctx, const char *fmt, va_list args);
00036 
00039 #ifdef __cplusplus
00040 }
00041 #endif
00042 
00043 #endif