ps2sdk  1.1
A collection of Open Source libraries used for developing applications on Sony's PlayStation 2® (PS2).
screenshot.h
Go to the documentation of this file.
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7 # Licenced under Academic Free License version 2.0
8 # Review ps2sdk README & LICENSE files for further details.
9 */
10 
16 #ifndef __SCREENSHOT_H__
17 #define __SCREENSHOT_H__
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 int ps2_screenshot_file( const char* pFilename,unsigned int VramAdress,
24  unsigned int Width, unsigned int Height, unsigned int Psm );
25 
26 int ps2_screenshot( void* pTemp, unsigned int VramAdress,unsigned int x,unsigned int y,
27  unsigned int Width, unsigned int Height, unsigned int Psm );
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif /* __SCREENSHOT_H__ */
s32 x
Definition: libmouse.c:34
s32 y
Definition: libmouse.c:34
int ps2_screenshot(void *pTemp, unsigned int VramAdress, unsigned int x, unsigned int y, unsigned int Width, unsigned int Height, unsigned int Psm)
Definition: screenshot.c:181
int ps2_screenshot_file(const char *pFilename, unsigned int VramAdress, unsigned int Width, unsigned int Height, unsigned int Psm)
Definition: screenshot.c:84