pspssl.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  * pspssl.h - Interface to the ssl library.
00007  *
00008  * Copyright (c) 2008 David Perry (InsertWittyName)
00009  * Copyright (c) 2008 moonlight
00010  *
00011  */
00012 
00013 #ifndef __PSPSSL_H__
00014 #define __PSPSSL_H__
00015 
00016 #if defined(__cplusplus)
00017 extern "C" {
00018 #endif
00019 
00027 int sceSslInit(int unknown1);
00028 
00034 int sceSslEnd(void);
00035 
00043 int sceSslGetUsedMemoryMax(unsigned int *memory);
00044 
00052 int sceSslGetUsedMemoryCurrent(unsigned int *memory);
00053 
00054 #if defined(__cplusplus)
00055 };
00056 #endif
00057 
00058 #endif