PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
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
20extern "C" {
21#endif
22
23extern int ps2_screenshot_file( const char* pFilename,unsigned int VramAdress,
24 unsigned int Width, unsigned int Height, unsigned int Psm );
25
26extern 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__ */
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